From ac35cd692e3779e80dc69d2ccc00bb8673d8b786 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 21 Apr 2015 22:58:03 -0700 Subject: [PATCH 1/8] Change New- cmdlets related with OSProfile to Add- cmdlets New-AzureAdditionalUnattendContent to Add-AzureVMAdditionalUnattendContentConfig New-AzureSshPublicKey to Add-AzureVMSshPublicKeyConfig New-AzureVaultSecretGroup to Add-AzureVMSecretConfig --- .../VirtualMachineProfileTests.ps1 | 52 ++++--- .../Commands.Compute/Commands.Compute.csproj | 13 +- .../Common/ConstantStringTypes.cs | 8 +- .../Models/PSAdditionalUnattendContent.cs | 68 ---------- .../Commands.Compute/Models/PSSshPublicKey.cs | 61 --------- .../Models/PSVaultCertificate.cs | 61 --------- .../Models/PSVaultSecretGroup.cs | 67 --------- .../Properties/Resources.Designer.cs | 11 +- .../Properties/Resources.resx | 3 + ...AdditionalUnattendContentConfigCommand.cs} | 61 +++++++-- .../Config/AddAzureVMSecretConfigCommand.cs | 127 ++++++++++++++++++ .../AddAzureVMSshPublicKeyConfigCommand.cs | 96 +++++++++++++ .../Config/NewAzureSshPublicKeyCommand.cs | 55 -------- .../Config/NewAzureVaultCertificateCommand.cs | 55 -------- .../Config/NewAzureVaultSecretGroupCommand.cs | 57 -------- .../SetAzureVMOperatingSystemCommand.cs | 111 +++++++-------- 16 files changed, 374 insertions(+), 532 deletions(-) delete mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs delete mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs delete mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs delete mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs rename src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/{NewAzureAdditionalUnattendContentCommand.cs => AddAzureVMAdditionalUnattendContentConfigCommand.cs} (58%) create mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyConfigCommand.cs delete mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs delete mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs delete mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 index 4fe4db74fac6..71c9ba2b6dba 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 @@ -75,25 +75,31 @@ function Test-VirtualMachineProfile $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $referenceUri = "/subscriptions/05cacd0c-6f9b-492e-b673-d8be41a7644f/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; - $certStore = "My"; - $certUrl = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bdd703272"; - $vaultCert = New-AzureVaultCertificate -CertificateStore $certStore -CertificateUrl $certUrl; - $vaultSG = New-AzureVaultSecretGroup -ReferenceUri $referenceUri -VaultCertificates $vaultCert; - - $aucSetting = "AutoLogon"; - $aucContent = "p@ssw0rdtrue</PlainText></AdministratorPassword></UserAccounts>"; - $auc1 = New-AzureAdditionalUnattendContent -Content $aucContent -SettingName $aucSetting; - $auc2 = New-AzureAdditionalUnattendContent -Content $aucContent -SettingName $aucSetting; - $winRMCertUrl = "http://keyVaultName.vault.azure.net/secrets/secretName/secretVersion"; $timeZone = "Pacific Standard Time"; $custom = "echo 'Hello World'"; $encodedCustom = "ZWNobyAnSGVsbG8gV29ybGQn"; - $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -CustomData $custom -Secrets $vaultSG -WinRMHttp -WinRMHttps -WinRMCertUrl $winRMCertUrl -ProvisionVMAgent -EnableAutoUpdate -TimeZone $timeZone -AdditionalUnattendContents $auc1,$auc2; + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -CustomData $custom -WinRMHttp -WinRMHttps -WinRMCertUrl $winRMCertUrl -ProvisionVMAgent -EnableAutoUpdate -TimeZone $timeZone; $p = Set-AzureVMSourceImage -VM $p -Name $img; - + + $referenceUri = "/subscriptions/" + (Get-AzureSubscription -Current).SubscriptionId + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; + $certStore = "My"; + $certUrl = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bdd703272"; + $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri -CertificateStore $certStore -CertificateUrl $certUrl; + + $referenceUri2 = "/subscriptions/" + (Get-AzureSubscription -Current).SubscriptionId + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault456"; + $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri2 -CertificateStore $certStore -CertificateUrl $certUrl; + + $certStore2 = "My2"; + $certUrl2 = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bddaaaaaa"; + $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri -CertificateStore $certStore2 -CertificateUrl $certUrl2; + + $aucSetting = "AutoLogon"; + $aucContent = "<UserAccounts><AdministratorPassword><Value>p@ssw0rd</Value><PlainText>true</PlainText></AdministratorPassword></UserAccounts>"; + $p = Add-AzureVMAdditionalUnattendContentConfig -VM $p -Content $aucContent -SettingName $aucSetting; + $p = Add-AzureVMAdditionalUnattendContentConfig -VM $p -Content $aucContent -SettingName $aucSetting; + Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; @@ -101,6 +107,12 @@ function Test-VirtualMachineProfile Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateStore $certStore; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateUrl $certUrl; + Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; + Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[1].CertificateStore $certStore2; + Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[1].CertificateUrl $certUrl2; + Assert-AreEqual $p.OSProfile.Secrets[1].SourceVault.ReferenceUri $referenceUri2; + Assert-AreEqual $p.OSProfile.Secrets[1].VaultCertificates[0].CertificateStore $certStore; + Assert-AreEqual $p.OSProfile.Secrets[1].VaultCertificates[0].CertificateUrl $certUrl; Assert-AreEqual $encodedCustom $p.OSProfile.CustomData; # Verify WinRM @@ -126,14 +138,16 @@ function Test-VirtualMachineProfile # Linux OS $img = "b4590d9e3ed742e4a1d46e5424aa335e__SUSE-Linux-Enterprise-Server-11-SP3-v206"; - $sshPath = "/home/pstestuser/.ssh/authorized_keys"; - $sshPublicKey = "MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV"; - - $sshKey = New-AzureSshPublicKey -KeyData $sshPublicKey -Path $sshPath; - $p = Set-AzureVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred -CustomData $custom -Secrets $vaultSG -SSHPublicKeys $sshKey -DisablePasswordAuthentication; + $p = Set-AzureVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred -CustomData $custom -DisablePasswordAuthentication; $p = Set-AzureVMSourceImage -VM $p -Name $img; + $sshPath = "/home/pstestuser/.ssh/authorized_keys"; + $sshPublicKey = "MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV"; + $p = Add-AzureVMSshPublicKeyConfig -VM $p -KeyData $sshPublicKey -Path $sshPath; + $p = Add-AzureVMSshPublicKeyConfig -VM $p -KeyData $sshPublicKey -Path $sshPath; + $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri -CertificateStore $certStore -CertificateUrl $certUrl; + Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; @@ -146,5 +160,7 @@ function Test-VirtualMachineProfile # Verify SSH configuration Assert-AreEqual $sshPublicKey $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[0].KeyData; Assert-AreEqual $sshPath $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[0].Path; + Assert-AreEqual $sshPublicKey $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[1].KeyData; + Assert-AreEqual $sshPath $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[1].Path; Assert-AreEqual $true $p.OSProfile.LinuxConfiguration.DisablePasswordAuthentication } diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 0db800c27ce8..b5e9afdba222 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -163,10 +163,6 @@ <Compile Include="Images\GetAzureVMImageOfferCommand.cs" /> <Compile Include="Images\GetAzureVMImageCommand.cs" /> <Compile Include="Images\VirtualMachineImageBaseCmdlet.cs" /> - <Compile Include="Models\PSAdditionalUnattendContent.cs" /> - <Compile Include="Models\PSSshPublicKey.cs" /> - <Compile Include="Models\PSVaultCertificate.cs" /> - <Compile Include="Models\PSVaultSecretGroup.cs" /> <Compile Include="Models\PSVirtualMachineExtension.cs" /> <Compile Include="Models\PSAvailabilitySet.cs" /> <Compile Include="Models\PSVirtualMachineInstanceView.cs" /> @@ -185,10 +181,9 @@ <Compile Include="VirtualMachineSizes\VirtualMachineSizeBaseCmdlet.cs" /> <Compile Include="VirtualMachine\Action\SaveAzureVMImageCommand.cs" /> <Compile Include="VirtualMachine\Action\SetAzureVMCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureAdditionalUnattendContentCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureSshPublicKeyCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureVaultCertificateCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureVaultSecretGroupCommand.cs" /> + <Compile Include="VirtualMachine\Config\AddAzureVMAdditionalUnattendContentConfigCommand.cs" /> + <Compile Include="VirtualMachine\Config\AddAzureVMSshPublicKeyConfigCommand.cs" /> + <Compile Include="VirtualMachine\Config\AddAzureVMSecretConfigCommand.cs" /> <Compile Include="VirtualMachine\Config\RemoveAzureVMNetworkInterfaceCommand.cs" /> <Compile Include="VirtualMachine\Config\RemoveAzureVMDataDiskCommand.cs" /> <Compile Include="VirtualMachine\Config\SetAzureVMSourceImage.cs" /> @@ -285,4 +280,4 @@ <Target Name="AfterBuild"> </Target> --> -</Project> +</Project> \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index c328c5686253..424ffbd08bd1 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -85,9 +85,9 @@ public static class ProfileNouns public const string VirtualMachineUsage = "AzureVMUsage"; - public const string SshPublicKey = "AzureSshPublicKey"; - public const string AdditionalUnattendContent = "AzureAdditionalUnattendContent"; - public const string VaultCertificate = "AzureVaultCertificate"; - public const string VaultSecretGroup = "AzureVaultSecretGroup"; + public const string SshPublicKey = "AzureVMSshPublicKeyConfig"; + public const string AdditionalUnattendContent = "AzureVMAdditionalUnattendContentConfig"; + public const string VaultCertificate = "AzureVMVaultCertificateConfig"; + public const string VaultSecretGroup = "AzureVMSecretConfig"; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs deleted file mode 100644 index 0f6cc70e5fe8..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs +++ /dev/null @@ -1,68 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSAdditionalUnattendContent - { - public string ComponentName { get; set; } - - public string Content { get; set; } - - public string PassName { get; set; } - - public string SettingName { get; set; } - } - - public static class PSAdditionalUnattendContentConversions - { - public static PSAdditionalUnattendContent ToPSAdditionalUnattendContent(this AdditionalUnattendContent auc) - { - if (auc == null) - { - return null; - } - - var result = new PSAdditionalUnattendContent - { - ComponentName = auc.ComponentName, - Content = auc.Content, - PassName = auc.PassName, - SettingName = auc.SettingName, - }; - - return result; - } - - public static AdditionalUnattendContent ToAdditionalUnattendContent(this PSAdditionalUnattendContent psauc) - { - if (psauc == null) - { - return null; - } - - var result = new AdditionalUnattendContent - { - ComponentName = psauc.ComponentName, - Content = psauc.Content, - PassName = psauc.PassName, - SettingName = psauc.SettingName, - }; - - return result; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs deleted file mode 100644 index 5b1b918bbfc4..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs +++ /dev/null @@ -1,61 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSSshPublicKey - { - public string KeyData { get; set; } - - public string Path { get; set; } - } - - public static class PSSshPublicKeyConversions - { - - public static PSSshPublicKey ToPSSshPublicKey(this SshPublicKey spk) - { - if (spk == null) - { - return null; - } - - var result = new PSSshPublicKey - { - KeyData = spk.KeyData, - Path = spk.Path, - }; - - return result; - } - public static SshPublicKey ToSshPublicKey(this PSSshPublicKey psspk) - { - if (psspk == null) - { - return null; - } - - var result = new SshPublicKey - { - KeyData = psspk.KeyData, - Path = psspk.Path, - }; - - return result; - } - - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs deleted file mode 100644 index 0dc76ed51951..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs +++ /dev/null @@ -1,61 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSVaultCertificate - { - public string CertificateStore { get; set; } - - public string CertificateUrl { get; set; } - } - - public static class PSVaultCertificateConversions - { - - public static PSVaultCertificate ToPSVaultCertificate(this VaultCertificate vc) - { - if (vc == null) - { - return null; - } - - var result = new PSVaultCertificate - { - CertificateStore = vc.CertificateStore, - CertificateUrl = vc.CertificateUrl, - }; - - return result; - } - - public static VaultCertificate ToVaultCertificate(this PSVaultCertificate psvc) - { - if (psvc == null) - { - return null; - } - - var result = new VaultCertificate - { - CertificateStore = psvc.CertificateStore, - CertificateUrl = psvc.CertificateUrl, - }; - - return result; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs deleted file mode 100644 index 1f86caf58ea1..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs +++ /dev/null @@ -1,67 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Management.Compute.Models; -using System.Collections.Generic; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSVaultSecretGroup - { - public SourceVaultReference SourceVault { get; set; } - - public List<PSVaultCertificate> VaultCertificates { get; set; } - } - - public static class PSVaultSecretGroupConversions - { - public static PSVaultSecretGroup ToPSVaultSecretGroup(this VaultSecretGroup vsg) - { - if (vsg == null) - { - return null; - } - - var vaultCerts = new List<PSVaultCertificate>(); - foreach(var vc in vsg.VaultCertificates) - { - vaultCerts.Add(vc.ToPSVaultCertificate()); - } - - var result = new PSVaultSecretGroup - { - SourceVault = vsg.SourceVault, - VaultCertificates = vaultCerts, - }; - - return result; - } - - public static VaultSecretGroup ToVaultSecretGroup(this PSVaultSecretGroup psvsg) - { - if (psvsg == null) - { - return null; - } - - var result = new VaultSecretGroup - { - SourceVault = psvsg.SourceVault, - VaultCertificates = psvsg.VaultCertificates.ConvertAll<VaultCertificate>(e => e.ToVaultCertificate()), - }; - - return result; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index a859c0088ca8..614451902773 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -59,7 +59,16 @@ internal Resources() { resourceCulture = value; } } - + + /// <summary> + /// Looks up a localized string similar to Cannot specify both Windows and Linux configurations.. + /// </summary> + public static string BothWindowsAndLinuxConfigurationsSpecified { + get { + return ResourceManager.GetString("BothWindowsAndLinuxConfigurationsSpecified", resourceCulture); + } + } + /// <summary> /// Looks up a localized string similar to No Run File has been assigned, and the Custom Script extension will try to use the first specified File Name as the Run File.. /// </summary> diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index 7ff9dcb19b71..ac21c5d086af 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -117,6 +117,9 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> + <data name="BothWindowsAndLinuxConfigurationsSpecified" xml:space="preserve"> + <value>Cannot specify both Windows and Linux configurations.</value> + </data> <data name="CustomScriptExtensionTryToUseTheFirstSpecifiedFileAsRunScript" xml:space="preserve"> <value>No Run File has been assigned, and the Custom Script extension will try to use the first specified File Name as the Run File.</value> </data> diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureAdditionalUnattendContentCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs similarity index 58% rename from src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureAdditionalUnattendContentCommand.cs rename to src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs index 597f385b46d0..52afa1db7c21 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureAdditionalUnattendContentCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs @@ -14,34 +14,47 @@ using Microsoft.Azure.Commands.Compute.Common; using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { /// <summary> - /// Create Additional Unattend Content Object + /// Add an Additional Unattend Content Object to VM /// </summary> [Cmdlet( - VerbsCommon.New, + VerbsCommon.Add, ProfileNouns.AdditionalUnattendContent), OutputType( - typeof(PSAdditionalUnattendContent))] + typeof(PSVirtualMachine))] public class NewAzureAdditionalUnattendContentCommand : AzurePSCmdlet { private const string defaultComponentName = "Microsoft-Windows-Shell-Setup"; private const string defaultPassName = "oobeSystem"; + [Alias("VMProfile")] [Parameter( - DontShow = true, // Currently, the only allowable value is 'Microsoft-Windows-Shell-Setup'. + Mandatory = true, Position = 0, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMProfile)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter( + DontShow = true, // Currently, the only allowable value is 'Microsoft-Windows-Shell-Setup'. + Position = 1, ValueFromPipelineByPropertyName = true, HelpMessage = "Component Name.")] [ValidateNotNullOrEmpty] public string ComponentName { get; set; } [Parameter( - Position = 1, + Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = "XML Formatted Content.")] [ValidateNotNullOrEmpty] @@ -49,14 +62,14 @@ public class NewAzureAdditionalUnattendContentCommand : AzurePSCmdlet [Parameter( DontShow = true, // Currently, the only allowable value is 'oobeSystem'. - Position = 2, + Position = 3, ValueFromPipelineByPropertyName = true, HelpMessage = "Pass name")] [ValidateNotNullOrEmpty] public string PassName { get; set; } [Parameter( - Position = 3, + Position = 4, ValueFromPipelineByPropertyName = true, HelpMessage = "Setting Name.")] [ValidateNotNullOrEmpty] @@ -64,13 +77,35 @@ public class NewAzureAdditionalUnattendContentCommand : AzurePSCmdlet public override void ExecuteCmdlet() { - WriteObject(new PSAdditionalUnattendContent + if (this.VM.OSProfile == null) + { + this.VM.OSProfile = new OSProfile(); + } + + if (this.VM.OSProfile.WindowsConfiguration == null && this.VM.OSProfile.LinuxConfiguration == null) + { + this.VM.OSProfile.WindowsConfiguration = new WindowsConfiguration(); + } + else if (this.VM.OSProfile.WindowsConfiguration == null && this.VM.OSProfile.LinuxConfiguration != null) { - ComponentName = defaultComponentName, - Content = this.Content, - PassName = defaultPassName, - SettingName = this.SettingName, - }); + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.WindowsConfiguration.AdditionalUnattendContents == null) + { + this.VM.OSProfile.WindowsConfiguration.AdditionalUnattendContents = new List<AdditionalUnattendContent> (); + } + + this.VM.OSProfile.WindowsConfiguration.AdditionalUnattendContents.Add( + new AdditionalUnattendContent + { + ComponentName = defaultComponentName, + Content = this.Content, + PassName = defaultPassName, + SettingName = this.SettingName, + }); + + WriteObject(this.VM); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs new file mode 100644 index 000000000000..f2063a401700 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs @@ -0,0 +1,127 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + /// <summary> + /// Add a Vault Secret Group object to VM + /// </summary> + [Cmdlet( + VerbsCommon.Add, + ProfileNouns.VaultSecretGroup), + OutputType( + typeof(PSVirtualMachine))] + public class NewAzureVaultSecretGroupCommand : AzurePSCmdlet + { + [Alias("VMProfile")] + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMProfile)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter( + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "the relative URL")] + [ValidateNotNullOrEmpty] + public string ReferenceUri { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Certificate store in LocalMachine")] + [ValidateNotNullOrEmpty] + public string CertificateStore { get; set; } + + [Parameter( + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "URL referencing a secret in a Key Vault.")] + [ValidateNotNullOrEmpty] + public string CertificateUrl { get; set; } + + public override void ExecuteCmdlet() + { + if (this.VM.OSProfile == null) + { + this.VM.OSProfile = new OSProfile(); + } + + if (this.VM.OSProfile.Secrets == null) + { + this.VM.OSProfile.Secrets = new List<VaultSecretGroup>(); + } + + int i = 0; + + for(; i <= this.VM.OSProfile.Secrets.Count; i++) + { + if (i == this.VM.OSProfile.Secrets.Count) + { + var sourceVault = new SourceVaultReference { + ReferenceUri = this.ReferenceUri + }; + + var vaultCertificates = new List<VaultCertificate>{ + new VaultCertificate() + { + CertificateStore = this.CertificateStore, + CertificateUrl = this.CertificateUrl, + } + }; + + this.VM.OSProfile.Secrets.Add( + new VaultSecretGroup() + { + SourceVault = sourceVault, + VaultCertificates = vaultCertificates, + }); + + break; + } + + if (this.VM.OSProfile.Secrets[i].SourceVault != null && this.VM.OSProfile.Secrets[i].SourceVault.ReferenceUri == this.ReferenceUri) + { + if (this.VM.OSProfile.Secrets[i].VaultCertificates == null) + { + this.VM.OSProfile.Secrets[i].VaultCertificates = new List<VaultCertificate>(); + } + + this.VM.OSProfile.Secrets[i].VaultCertificates.Add( + new VaultCertificate() + { + CertificateStore = this.CertificateStore, + CertificateUrl = this.CertificateUrl, + }); + + break; + } + } + + WriteObject(this.VM); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyConfigCommand.cs new file mode 100644 index 000000000000..1375dffe9d87 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyConfigCommand.cs @@ -0,0 +1,96 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + /// <summary> + /// Add an Ssh Public Key object to VM + /// </summary> + [Cmdlet( + VerbsCommon.Add, + ProfileNouns.SshPublicKey), + OutputType( + typeof(PSVirtualMachine))] + public class NewAzureSshPublicKeyCommand : AzurePSCmdlet + { + [Alias("VMProfile")] + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMProfile)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter( + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Certificate Public Key")] + [ValidateNotNullOrEmpty] + public string KeyData { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Full Path on VM where SSH Public Key is Stored.")] + [ValidateNotNullOrEmpty] + public string Path { get; set; } + + public override void ExecuteCmdlet() + { + + if (this.VM.OSProfile == null) + { + this.VM.OSProfile = new OSProfile(); + } + + if (this.VM.OSProfile.WindowsConfiguration == null && this.VM.OSProfile.LinuxConfiguration == null) + { + this.VM.OSProfile.LinuxConfiguration = new LinuxConfiguration(); + } + else if (this.VM.OSProfile.WindowsConfiguration != null && this.VM.OSProfile.LinuxConfiguration == null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.LinuxConfiguration.SshConfiguration == null) + { + this.VM.OSProfile.LinuxConfiguration.SshConfiguration = new SshConfiguration(); + } + + if (this.VM.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys == null) + { + this.VM.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys = new List<SshPublicKey>(); + } + + this.VM.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys.Add( + new SshPublicKey + { + KeyData = this.KeyData, + Path = this.Path, + }); + + WriteObject(this.VM); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs deleted file mode 100644 index 8f8d6a4169a4..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs +++ /dev/null @@ -1,55 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Compute -{ - /// <summary> - /// Create Ssh Public Key object - /// </summary> - [Cmdlet( - VerbsCommon.New, - ProfileNouns.SshPublicKey), - OutputType( - typeof(PSSshPublicKey))] - public class NewAzureSshPublicKeyCommand : AzurePSCmdlet - { - [Parameter( - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Certificate Public Key")] - [ValidateNotNullOrEmpty] - public string KeyData { get; set; } - - [Parameter( - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Full Path on VM where SSH Public Key is Stored.")] - [ValidateNotNullOrEmpty] - public string Path { get; set; } - - public override void ExecuteCmdlet() - { - WriteObject(new PSSshPublicKey - { - KeyData = this.KeyData, - Path = this.Path, - }); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs deleted file mode 100644 index 49115ffd2987..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs +++ /dev/null @@ -1,55 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Compute -{ - /// <summary> - /// Create Vault Certificate object - /// </summary> - [Cmdlet( - VerbsCommon.New, - ProfileNouns.VaultCertificate), - OutputType( - typeof(PSVaultCertificate))] - public class NewAzureVaultCertificateCommand : AzurePSCmdlet - { - [Parameter( - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Certificate store in LocalMachine")] - [ValidateNotNullOrEmpty] - public string CertificateStore { get; set; } - - [Parameter( - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = "URL referencing a secret in a Key Vault.")] - [ValidateNotNullOrEmpty] - public string CertificateUrl { get; set; } - - public override void ExecuteCmdlet() - { - WriteObject(new PSVaultCertificate - { - CertificateStore = this.CertificateStore, - CertificateUrl = this.CertificateUrl, - }); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs deleted file mode 100644 index 759ad0666da2..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs +++ /dev/null @@ -1,57 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Collections.Generic; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Compute -{ - /// <summary> - /// Create Vault Secret Group object - /// </summary> - [Cmdlet( - VerbsCommon.New, - ProfileNouns.VaultSecretGroup), - OutputType( - typeof(PSVaultSecretGroup))] - public class NewAzureVaultSecretGroupCommand : AzurePSCmdlet - { - [Parameter( - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Certificate store in LocalMachine")] - [ValidateNotNullOrEmpty] - public string ReferenceUri { get; set; } - - [Parameter( - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = "URL referencing a secret in a Key Vault.")] - [ValidateNotNullOrEmpty] - public List<PSVaultCertificate> VaultCertificates { get; set; } - - public override void ExecuteCmdlet() - { - WriteObject(new PSVaultSecretGroup - { - SourceVault = new SourceVaultReference { ReferenceUri = this.ReferenceUri }, - VaultCertificates = this.VaultCertificates, - }); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs index f0950869fc85..6babad26bdf0 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs @@ -89,16 +89,9 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [ValidateNotNullOrEmpty] public string CustomData { get; set; } - [Parameter( - Position = 5, - ValueFromPipelineByPropertyName = true, - HelpMessage = "List of Certificates for Addition to the VM.")] - [ValidateNotNullOrEmpty] - public List<PSVaultSecretGroup> Secrets { get; set; } - [Parameter( ParameterSetName = WindowsParamSet, - Position = 6, + Position = 5, ValueFromPipelineByPropertyName = true, HelpMessage = "The Provision VM Agent.")] [ValidateNotNullOrEmpty] @@ -106,7 +99,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 7, + Position = 6, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable Automatic Update")] [ValidateNotNullOrEmpty] @@ -114,7 +107,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 8, + Position = 7, ValueFromPipelineByPropertyName = true, HelpMessage = "Time Zone")] [ValidateNotNullOrEmpty] @@ -122,7 +115,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 9, + Position = 8, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable WinRM Http protocol")] [ValidateNotNullOrEmpty] @@ -130,7 +123,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 10, + Position = 9, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable WinRM Https protocol")] [ValidateNotNullOrEmpty] @@ -138,32 +131,16 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 11, + Position = 10, ValueFromPipelineByPropertyName = true, HelpMessage = "Url for WinRM certificate")] [ValidateNotNullOrEmpty] public Uri WinRMCertUrl { get; set; } - [Parameter( - ParameterSetName = WindowsParamSet, - Position = 12, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Additional Unattend Content")] - [ValidateNotNullOrEmpty] - public List<PSAdditionalUnattendContent> AdditionalUnattendContents { get; set; } - // Linux Parameter Sets [Parameter( ParameterSetName = LinuxParamSet, - Position = 6, - ValueFromPipelineByPropertyName = true, - HelpMessage = "SSH Public Keys")] - [ValidateNotNullOrEmpty] - public List<PSSshPublicKey> SSHPublicKeys { get; set; } - - [Parameter( - ParameterSetName = LinuxParamSet, - Position = 7, + Position = 5, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable WinRM Https protocol")] [ValidateNotNullOrEmpty] @@ -177,30 +154,37 @@ public override void ExecuteCmdlet() AdminUsername = this.Credential.UserName, AdminPassword = SecureStringExtensions.ConvertToString(this.Credential.Password), CustomData = string.IsNullOrWhiteSpace(this.CustomData) ? null : Convert.ToBase64String(Encoding.UTF8.GetBytes(this.CustomData)), - Secrets = (this.Secrets == null) ? null : this.Secrets.ConvertAll<VaultSecretGroup>(e => e.ToVaultSecretGroup()), }; if (this.ParameterSetName == LinuxParamSet) { - this.VM.OSProfile.LinuxConfiguration = - (!this.DisablePasswordAuthentication.IsPresent && this.SSHPublicKeys == null) - ? null - : new LinuxConfiguration - { - DisablePasswordAuthentication = this.DisablePasswordAuthentication.IsPresent - ? (bool?) true - : null, - - SshConfiguration = (this.SSHPublicKeys == null) - ? null - : new SshConfiguration - { - PublicKeys = this.SSHPublicKeys.ConvertAll<SshPublicKey>(e => e.ToSshPublicKey()), - } - }; + if (this.VM.OSProfile.WindowsConfiguration != null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.LinuxConfiguration == null) + { + this.VM.OSProfile.LinuxConfiguration = new LinuxConfiguration(); + } + + this.VM.OSProfile.LinuxConfiguration.DisablePasswordAuthentication = + (this.DisablePasswordAuthentication.IsPresent) + ? (bool?)true + : null; } else { + if (this.VM.OSProfile.LinuxConfiguration != null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.WindowsConfiguration == null) + { + this.VM.OSProfile.WindowsConfiguration = new WindowsConfiguration(); + } + var listenerList = new List<WinRMListener>(); if (this.WinRMHttp.IsPresent) @@ -222,26 +206,27 @@ public override void ExecuteCmdlet() } // OS Profile - this.VM.OSProfile.WindowsConfiguration = - ! (this.ProvisionVMAgent.IsPresent || this.EnableAutoUpdate.IsPresent || this.WinRMHttp.IsPresent || this.WinRMHttps.IsPresent) && - string.IsNullOrEmpty(this.TimeZone) && AdditionalUnattendContents == null + this.VM.OSProfile.WindowsConfiguration.ProvisionVMAgent = + (this.ProvisionVMAgent.IsPresent) + ? (bool?) true + : null; + + this.VM.OSProfile.WindowsConfiguration.EnableAutomaticUpdates = + this.EnableAutoUpdate.IsPresent + ? (bool?) true + : null; + + this.VM.OSProfile.WindowsConfiguration.TimeZone = this.TimeZone; + + this.VM.OSProfile.WindowsConfiguration.WinRMConfiguration = + ! (this.WinRMHttp.IsPresent || this.WinRMHttps.IsPresent) ? null - : new WindowsConfiguration + : new WinRMConfiguration { - ProvisionVMAgent = this.ProvisionVMAgent.IsPresent ? (bool?) true : null, - EnableAutomaticUpdates = this.EnableAutoUpdate.IsPresent ? (bool?) true : null, - TimeZone = this.TimeZone, - AdditionalUnattendContents = (this.AdditionalUnattendContents == null) - ? null - : this.AdditionalUnattendContents.ConvertAll<AdditionalUnattendContent>(e => e.ToAdditionalUnattendContent()), - WinRMConfiguration = ! (this.WinRMHttp.IsPresent || this.WinRMHttps.IsPresent) - ? null - : new WinRMConfiguration - { - Listeners = listenerList, - }, + Listeners = listenerList, }; } + WriteObject(this.VM); } } From 4d0d4bf5f4017986ee72b202284abe3e2b68d493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= <gucalder@microsoft.com> Date: Wed, 22 Apr 2015 07:01:15 -0700 Subject: [PATCH 2/8] BUG: 3586662 Powershell - Usage cmdlets for retrieving usage across resources --- .../Commands.Insights.Test.csproj | 14 +- .../ScenarioTests/UsageMetricsTests.cs | 29 ++ .../ScenarioTests/UsageMetricsTests.ps1 | 38 ++ .../TestGetUsageMetrics.json | 64 +++ .../GetUsageMetricsCommandTests.cs | 127 ++++++ .../Commands.Insights.Test/Utilities.cs | 13 + .../Commands.Insights.Test/packages.config | 2 +- .../Commands.Insights.csproj | 5 +- ...osoft.Azure.Commands.Insights.dll-Help.xml | 401 +++++++++++++----- .../OutputClasses/PSUsageMetric.cs | 46 ++ .../UsageMetrics/GetUsageMetricsCommand.cs | 129 ++++++ .../Commands.Insights/packages.config | 2 +- 12 files changed, 763 insertions(+), 107 deletions(-) create mode 100644 src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs create mode 100644 src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 create mode 100644 src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json create mode 100644 src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs create mode 100644 src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs create mode 100644 src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj index acf1a9e1f5f1..3ebbad2708b3 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj @@ -58,7 +58,7 @@ <HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.Insights"> - <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.2-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> + <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.7-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.ResourceManager"> <SpecificVersion>False</SpecificVersion> @@ -132,10 +132,10 @@ <Compile Include="ScenarioTests\AlertsTests.cs" /> <Compile Include="ScenarioTests\AutoscaleTests.cs" /> <Compile Include="ScenarioTests\EventsTests.cs" /> - <Compile Include="ScenarioTests\MetricsTests.cs"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Compile> + <Compile Include="ScenarioTests\MetricsTests.cs" /> <Compile Include="ScenarioTests\TestsController.cs" /> + <Compile Include="ScenarioTests\UsageMetricsTests.cs" /> + <Compile Include="UsageMetrics\GetUsageMetricsCommandTests.cs" /> <Compile Include="Utilities.cs" /> </ItemGroup> <ItemGroup> @@ -170,6 +170,9 @@ <None Include="ScenarioTests\MetricsTests.ps1"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="ScenarioTests\UsageMetricsTests.ps1"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="SessionRecords\Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests\TestAddAlertRule.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> @@ -215,6 +218,9 @@ <None Include="SessionRecords\Microsoft.Azure.Commands.Insights.Test.ScenarioTests.MetricsTests\TestGetMetricDefinitions.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="SessionRecords\Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests\TestGetUsageMetrics.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> </ItemGroup> <ItemGroup> <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs new file mode 100644 index 000000000000..90f3689ee01a --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests +{ + public class UsageMetricsTests + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetUsageMetrics() + { + TestsController.NewInstance.RunPsTest("Test-GetUsageMetrics"); + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 new file mode 100644 index 000000000000..44a44779718a --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 @@ -0,0 +1,38 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests getting usage metrics values for a particular resource. +#> +function Test-GetUsageMetrics +{ + # Setup + $rscname = '/subscriptions/a93fb07c-6c93-40be-bf3b-4f0deba10f4b/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/garyyang1' + + try + { + # Test + # -timeGrain 00:01:00 -starttime 2015-03-23T15:00:00 -endtime 2015-03-23T15:30:00 + $actual = Get-UsageMetrics -ResourceId $rscname -star 2015-04-07T15:31:28.4590754-07:00 -end 2015-04-07T16:31:28.4590754-07:00 + + # Assert TODO add more asserts + Assert-AreEqual 0 $actual.Count + } + finally + { + # Cleanup + # No cleanup needed for now + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json b/src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json new file mode 100644 index 000000000000..6fd39220776c --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json @@ -0,0 +1,64 @@ +{ + "Entries": [ + { + "RequestUri": "/%2Fsubscriptions%2Fa93fb07c-6c93-40be-bf3b-4f0deba10f4b%2FresourceGroups%2FDefault-Web-EastUS%2Fproviders%2Fmicrosoft.web%2Fsites%2Fgaryyang1/usages?api-version=2014-04-01&$filter=startTime%20eq%202015-04-07T15%3A31%3A28.4590754-07%3A00%20and%20endTime%20eq%202015-04-07T16%3A31%3A28.4590754-07%3A00", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ "application/json" ], + "User-Agent": [ "Microsoft.Azure.Insights.InsightsClient/0.9.0.0 AzurePowershell/v0.8.15" ], + "x-ms-version": [ "2014-04-01" ], + "Connection": [ "Keep-Alive" ] + }, + "ResponseBody": "{\"id\":null,\"name\":\"garyyang1\",\"type\":\"Microsoft.Web/sites\",\"kind\":null,\"location\":\"East US\",\"tags\":null,\"plan\":null,\"properties\":[{\"displayName\":\"CPU Time\",\"name\":\"CpuTime\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data In\",\"name\":\"BytesReceived\",\"resourceName\":\"BytesReceived\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data Out\",\"name\":\"BytesSent\",\"resourceName\":\"BytesSent\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes read\",\"name\":\"LocalBytesRead\",\"resourceName\":\"LocalBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes written\",\"name\":\"LocalBytesWritten\",\"resourceName\":\"LocalBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes read\",\"name\":\"NetworkBytesRead\",\"resourceName\":\"NetworkBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes written\",\"name\":\"NetworkBytesWritten\",\"resourceName\":\"NetworkBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"WP stop requests\",\"name\":\"WPStopRequests\",\"resourceName\":\"WPStopRequests\",\"unit\":\"Count\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Memory Usage\",\"name\":\"MaxMemoryWorkingSetShortPeriod\",\"resourceName\":\"MaxMemoryWorkingSet\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"CPU Time - Minute Limit\",\"name\":\"CpuTimeShortPeriod\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-07T23:36:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"File System Storage\",\"name\":\"FileSystemStorage\",\"resourceName\":\"FileSystemStorage\",\"unit\":\"Bytes\",\"currentValue\":756736,\"limit\":53687091200,\"nextResetTime\":\"9999-12-31T23:59:59.9999999Z\",\"computeMode\":1,\"siteMode\":null}]}", + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 07 Apr 2015 23:31:33 GMT" ], + "Expires": [ "-1" ], + "Pragma": [ "no-cache" ], + "Content-Length": [ "2421" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "31999" ], + "x-ms-request-id": [ "63575ceb-f8d2-4a28-a571-edc783166245" ], + "x-ms-correlation-request-id": [ "4e8d2e93-0895-4cf1-aa40-5af880c3fb52" ], + "x-ms-routing-request-id": [ "WESTUS:20150323T205747Z:4e8d2e93-0895-4cf1-aa40-5af880c3fb52" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Fa93fb07c-6c93-40be-bf3b-4f0deba10f4b%2FresourceGroups%2FDefault-Web-EastUS%2Fproviders%2Fmicrosoft.web%2Fsites%2Fgaryyang1/usages?api-version=2014-04-01&$filter=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ "application/json" ], + "User-Agent": [ "Microsoft.Azure.Insights.InsightsClient/0.9.0.0 AzurePowershell/v0.8.15" ], + "x-ms-version": [ "2014-04-01" ] + }, + "ResponseBody": "{\"id\":null,\"name\":\"garyyang1\",\"type\":\"Microsoft.Web/sites\",\"kind\":null,\"location\":\"East US\",\"tags\":null,\"plan\":null,\"properties\":[{\"displayName\":\"CPU Time\",\"name\":\"CpuTime\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data In\",\"name\":\"BytesReceived\",\"resourceName\":\"BytesReceived\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data Out\",\"name\":\"BytesSent\",\"resourceName\":\"BytesSent\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes read\",\"name\":\"LocalBytesRead\",\"resourceName\":\"LocalBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes written\",\"name\":\"LocalBytesWritten\",\"resourceName\":\"LocalBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes read\",\"name\":\"NetworkBytesRead\",\"resourceName\":\"NetworkBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes written\",\"name\":\"NetworkBytesWritten\",\"resourceName\":\"NetworkBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"WP stop requests\",\"name\":\"WPStopRequests\",\"resourceName\":\"WPStopRequests\",\"unit\":\"Count\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Memory Usage\",\"name\":\"MaxMemoryWorkingSetShortPeriod\",\"resourceName\":\"MaxMemoryWorkingSet\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"CPU Time - Minute Limit\",\"name\":\"CpuTimeShortPeriod\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-07T23:41:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"File System Storage\",\"name\":\"FileSystemStorage\",\"resourceName\":\"FileSystemStorage\",\"unit\":\"Bytes\",\"currentValue\":756736,\"limit\":53687091200,\"nextResetTime\":\"9999-12-31T23:59:59.9999999Z\",\"computeMode\":1,\"siteMode\":null}]}", + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 07 Apr 2015 23:31:33 GMT" ], + "Expires": [ "-1" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "Content-Length": [ "2421" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "31997" ], + "x-ms-request-id": [ "8e430569-842a-4b86-a954-0fda5fe1576f" ], + "x-ms-correlation-request-id": [ "095a4225-2fcb-4f72-87a8-0ea4e11bfb7a" ], + "x-ms-routing-request-id": [ "WESTUS:20150323T223347Z:095a4225-2fcb-4f72-87a8-0ea4e11bfb7a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureCorrelationIdLog": [ + "" + ] + }, + "Variables": { + "SubscriptionId": "a93fb07c-6c93-40be-bf3b-4f0deba10f4b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs new file mode 100644 index 000000000000..c949e4267c5e --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs @@ -0,0 +1,127 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Azure.Commands.Insights.UsageMetrics; +using Microsoft.Azure.Insights; +using Microsoft.Azure.Insights.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using Xunit; + +namespace Microsoft.Azure.Commands.Insights.Test.Metrics +{ + public class GetUsageMetricsCommandTests + { + private readonly GetUsageMetricsCommand cmdlet; + private readonly Mock<InsightsClient> insightsClientMock; + private readonly Mock<IUsageMetricsOperations> insightsUsageMetricOperationsMock; + private Mock<ICommandRuntime> commandRuntimeMock; + private UsageMetricListResponse response; + private string resourceId; + private string filter; + private string apiVersion; + + public GetUsageMetricsCommandTests() + { + insightsUsageMetricOperationsMock = new Mock<IUsageMetricsOperations>(); + insightsClientMock = new Mock<InsightsClient>(); + commandRuntimeMock = new Mock<ICommandRuntime>(); + cmdlet = new GetUsageMetricsCommand() + { + CommandRuntime = commandRuntimeMock.Object, + InsightsClient = insightsClientMock.Object + }; + + response = Utilities.InitializeUsageMetricResponse(); + + insightsUsageMetricOperationsMock.Setup(f => f.ListAsync(It.IsAny<string>(), It.IsAny<string>(), It.IsAny<string>(), It.IsAny<CancellationToken>())) + .Returns(Task.FromResult<UsageMetricListResponse>(response)) + .Callback((string f, string s, string a, CancellationToken t) => + { + resourceId = f; + filter = s; + apiVersion = a; + }); + + insightsClientMock.SetupGet(f => f.UsageMetricOperations).Returns(this.insightsUsageMetricOperationsMock.Object); + } + + private void CleanParamVariables() + { + resourceId = null; + filter = null; + apiVersion = null; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetUsageMetricsCommandParametersProcessing() + { + // Testting defaults and required parameters + cmdlet.ResourceId = Utilities.ResourceUri; + + cmdlet.ExecuteCmdlet(); + Assert.True(filter != null && filter.Contains("startTime eq ") && filter.Contains(" and endTime eq ")); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + this.CleanParamVariables(); + var endDate = DateTime.Now.AddMinutes(-1); + cmdlet.EndTime = endDate; + + var startTime = endDate.Subtract(GetUsageMetricsCommand.DefaultTimeRange).ToString("O"); + var endTime = endDate.ToString("O"); + var expected = "startTime eq " + startTime + " and endTime eq " + endTime; + + // Remove the value assigned in the last execution + cmdlet.StartTime = default(DateTime); + + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + this.CleanParamVariables(); + cmdlet.StartTime = endDate.Subtract(GetUsageMetricsCommand.DefaultTimeRange).Subtract(GetUsageMetricsCommand.DefaultTimeRange); + startTime = cmdlet.StartTime.ToString("O"); + expected = "startTime eq " + startTime + " and endTime eq " + endTime; + + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + // Testing with optional parameters + this.CleanParamVariables(); + cmdlet.MetricNames = new[] {"n1", "n2"}; + expected = "(name.value eq 'n1' or name.value eq 'n2') and " + expected; + + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + // Testing with another api version + cmdlet.ApiVersion = "2015-01-01"; + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal("2015-01-01", apiVersion); + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs b/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs index 1cb0ac46ef9f..36e71b8e770d 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs @@ -157,6 +157,19 @@ public static MetricDefinitionListResponse InitializeMetricDefinitionResponse() }; } + public static UsageMetricListResponse InitializeUsageMetricResponse() + { + return new UsageMetricListResponse + { + UsageMetricCollection = new UsageMetricCollection + { + Value = new List<UsageMetric>() + }, + RequestId = Guid.NewGuid().ToString(), + StatusCode = HttpStatusCode.OK + }; + } + public static void VerifyDetailedOutput(EventCmdletBase cmdlet, ref string selected) { // Calling with detailed output diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config index adc70966ee6c..e9b43edecfda 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config @@ -4,7 +4,7 @@ <package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Authentication" version="1.0.25-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" /> - <package id="Microsoft.Azure.Insights" version="0.7.2-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Insights" version="0.7.7-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Test.Framework" version="1.0.5571.32271-prerelease" targetFramework="net45" /> <package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5571.32271-prerelease" targetFramework="net45" /> diff --git a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj index 19af9e2f5265..6275758fef62 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj +++ b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj @@ -57,7 +57,7 @@ <HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.Insights"> - <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.2-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> + <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.7-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.ResourceManager"> <HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath> @@ -136,6 +136,7 @@ <Compile Include="OutputClasses\PSMetricTabularResult.cs" /> <Compile Include="OutputClasses\PSThresholdRuleCondition.cs" /> <Compile Include="OutputClasses\PSToStringExtensions.cs" /> + <Compile Include="OutputClasses\PSUsageMetric.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\ResourcesForAlertCmdlets.Designer.cs"> <DependentUpon>ResourcesForAlertCmdlets.resx</DependentUpon> @@ -152,6 +153,7 @@ <DesignTime>True</DesignTime> <DependentUpon>ResourcesForAutoscaleCmdlets.resx</DependentUpon> </Compile> + <Compile Include="UsageMetrics\GetUsageMetricsCommand.cs" /> <Compile Include="Utilities.cs" /> </ItemGroup> <ItemGroup> @@ -186,6 +188,7 @@ <SubType>Designer</SubType> </EmbeddedResource> </ItemGroup> + <ItemGroup /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> diff --git a/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml b/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml index 920bbf2a71cd..929122763c44 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml +++ b/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml @@ -1130,7 +1130,7 @@ The output of this Cmdlet is suitable to be processed by the Export-csv Cmdlet.< <maml:description/> </dev:type> <maml:description> -<maml:para /> + <maml:para /> </maml:description> </command:inputType> </command:inputTypes> @@ -1142,7 +1142,7 @@ The output of this Cmdlet is suitable to be processed by the Export-csv Cmdlet.< <maml:description/> </dev:type> <maml:description> -<maml:para /> + <maml:para /> </maml:description> </command:returnValue> </command:returnValues> @@ -1170,8 +1170,7 @@ foreach($e in $s2) { Export-csv -Path ./metrics.csv -input $e -Append -NoTypeInf <maml:para>&quot;Name&quot;,&quot;TimestampUTC&quot;,&quot;Count&quot;,&quot;Last&quot;,&quot;Maximum&quot;,&quot;Minimum&quot;,&quot;Total&quot;,&quot;Average&quot;,&quot;StartTimeUTC&quot;,&quot;EndTimeUTC&quot;,&quot;TimeGrain&quot;,&quot;Unit&quot;,&quot;DimensionName&quot;,&quot;DimensionValue&quot;,&quot;ResourceId&quot; &quot;AverageResponseTime&quot;,&quot;2015-03-20 16:15:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot; &quot;AverageResponseTime&quot;,&quot;2015-03-20 16:17:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot; -&quot;AverageResponseTime&quot;,&quot;2015-03-20 16:18:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot; -</maml:para> +&quot;AverageResponseTime&quot;,&quot;2015-03-20 16:18:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot;</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -3285,6 +3284,10 @@ The value must be earlier than StartTime, but not more than 15 days.</maml:para> <maml:linkText>Get-AzureResourceProviderLog</maml:linkText> <maml:uri></maml:uri> </maml:navigationLink> + <maml:navigationLink> + <maml:linkText>Online Version:</maml:linkText> + <maml:uri>http://go.microsoft.com/fwlink/?LinkID=397618</maml:uri> + </maml:navigationLink> </maml:relatedLinks> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> @@ -4575,7 +4578,8 @@ Unit : Bytes</maml:para> <maml:description/> </dev:type> <maml:description> -<maml:para /> + <maml:para> + </maml:para> </maml:description> </command:returnValue> </command:returnValues> @@ -4620,8 +4624,7 @@ Properties : {} ResourceId : /subscriptions/e3f5b07d-3c39-4b0f-bf3b-40fdeba10f2a/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website3 StartTime : 3/20/2015 5:40:00 PM TimeGrain : 00:01:00 -Unit : Bytes -</maml:para> +Unit : Bytes</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -4674,8 +4677,7 @@ EndTime : 3/20/2015 6:43:33 PM ResourceId : /subscriptions/e3f5b07d-3c39-4b0f-bf3b-40fdeba10f2a/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website3 StartTime : 3/20/2015 5:43:00 PM TimeGrain : 00:01:00 -Unit : Seconds -</maml:para> +Unit : Seconds</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -4744,8 +4746,7 @@ EndTime : 3/20/2015 6:47:56 PM ResourceId : /subscriptions/e3f5b07d-3c39-4b0f-bf3b-40fdeba10f2a/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website3 StartTime : 3/20/2015 5:47:00 PM TimeGrain : 00:01:00 -Unit : Count -</maml:para> +Unit : Count</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -4772,6 +4773,206 @@ Unit : Count </maml:relatedLinks> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-UsageMetrics</command:name> + <maml:description> + <maml:para>Retrieves the usage metric values of a resource.</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>UsageMetrics</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Retrieves the usage metric values of a resource that comply with certain criteria.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-UsageMetrics</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceId</maml:name> + <maml:description> + <maml:para>The id of the resource the metric is associated to.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ApiVersion</maml:name> + <maml:description> + <maml:para>Api version string, e.g.: 2014-04-01 (default values), accepted by the resource provider.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTime</maml:name> + <maml:description> + <maml:para>Earliest Date/Time to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTime</maml:name> + <maml:description> + <maml:para>Latest Time/Date to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>MetricNames</maml:name> + <maml:description> + <maml:para>An array of names of metrics to retrieve their values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para>In-memory profile (AzureProfile).</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceId</maml:name> + <maml:description> + <maml:para>The id of the resource the metric is associated to.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ApiVersion</maml:name> + <maml:description> + <maml:para>Api version string, e.g.: 2014-04-01 (default values), accepted by the resource provider.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTime</maml:name> + <maml:description> + <maml:para>Earliest Date/Time to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <dev:type> + <maml:name>DateTime</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue>EndTime - 1 hour</dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTime</maml:name> + <maml:description> + <maml:para>Latest Time/Date to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <dev:type> + <maml:name>DateTime</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue>Local current date/time.</dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>MetricNames</maml:name> + <maml:description> + <maml:para>An array of names of metrics to retrieve their values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + <dev:type> + <maml:name>String[]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para>In-memory profile (AzureProfile).</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> +<maml:para /> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1: Querying with resaourceId only --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>get-usagemetrics -res /subscriptions/bcdeb07f-1c43-20be-1f3b-4f0febc10f5b/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/johnsmith</dev:code> + <dev:remarks> + <maml:para>Query the usage metrics for a website</maml:para> + <maml:para /> + <maml:para /> + <maml:para /> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + <maml:navigationLink> + <maml:linkText>Online Version:</maml:linkText> + <maml:uri>http://go.microsoft.com/fwlink/?LinkID=397618</maml:uri> + </maml:navigationLink> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>New-AutoscaleProfile</command:name> @@ -4820,23 +5021,37 @@ Unit : Count <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>StartTimeWindow</maml:name> + <maml:name>RecurrenceFrequency</maml:name> <maml:description> - <maml:para>The start of the time window.</maml:para> + <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>EndTimeWindow</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleDays</maml:name> <maml:description> - <maml:para>The end of the time window.</maml:para> + <maml:para>A list of days scheduled.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleHours</maml:name> + <maml:description> + <maml:para>A list of scheduled hours.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleMinutes</maml:name> + <maml:description> + <maml:para>List of scheduled minutes.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>TimeWindowTimeZone</maml:name> + <maml:name>ScheduleTimeZone</maml:name> <maml:description> - <maml:para>The time zone of the time window.</maml:para> + <maml:para>The time zone of the schedule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -4885,6 +5100,27 @@ Unit : Count </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTimeWindow</maml:name> + <maml:description> + <maml:para>The start of the time window.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTimeWindow</maml:name> + <maml:description> + <maml:para>The end of the time window.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>TimeWindowTimeZone</maml:name> + <maml:description> + <maml:para>The time zone of the time window.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Rules</maml:name> <maml:description> @@ -4930,41 +5166,6 @@ Unit : Count </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>RecurrenceFrequency</maml:name> - <maml:description> - <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleDays</maml:name> - <maml:description> - <maml:para>A list of days scheduled.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleHours</maml:name> - <maml:description> - <maml:para>A list of scheduled hours.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleMinutes</maml:name> - <maml:description> - <maml:para>List of scheduled minutes.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleTimeZone</maml:name> - <maml:description> - <maml:para>The time zone of the schedule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Rules</maml:name> <maml:description> @@ -5031,117 +5232,117 @@ Unit : Count <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>StartTimeWindow</maml:name> + <maml:name>RecurrenceFrequency</maml:name> <maml:description> - <maml:para>The start of the time window.</maml:para> + <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> <dev:type> - <maml:name>DateTime</maml:name> + <maml:name>RecurrenceFrequency</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>EndTimeWindow</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleDays</maml:name> <maml:description> - <maml:para>The end of the time window.</maml:para> + <maml:para>A list of days scheduled.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> <dev:type> - <maml:name>DateTime</maml:name> + <maml:name>List`1[String]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>TimeWindowTimeZone</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleHours</maml:name> <maml:description> - <maml:para>The time zone of the time window.</maml:para> + <maml:para>A list of scheduled hours.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>List`1[Int32]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Rules</maml:name> + <maml:name>ScheduleMinutes</maml:name> <maml:description> - <maml:para>The list of rules to add to the newly created profile.</maml:para> + <maml:para>List of scheduled minutes.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[ScaleRule]</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> <dev:type> - <maml:name>List`1[ScaleRule]</maml:name> + <maml:name>List`1[Int32]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Profile</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleTimeZone</maml:name> <maml:description> - <maml:para>In-memory profile (AzureProfile).</maml:para> + <maml:para>The time zone of the schedule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>AzureProfile</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>RecurrenceFrequency</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Rules</maml:name> <maml:description> - <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> + <maml:para>The list of rules to add to the newly created profile.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[ScaleRule]</command:parameterValue> <dev:type> - <maml:name>RecurrenceFrequency</maml:name> + <maml:name>List`1[ScaleRule]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleDays</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>A list of days scheduled.</maml:para> + <maml:para>In-memory profile (AzureProfile).</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleHours</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTimeWindow</maml:name> <maml:description> - <maml:para>A list of scheduled hours.</maml:para> + <maml:para>The start of the time window.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> <dev:type> - <maml:name>List`1[Int32]</maml:name> + <maml:name>DateTime</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleMinutes</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTimeWindow</maml:name> <maml:description> - <maml:para>List of scheduled minutes.</maml:para> + <maml:para>The end of the time window.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> <dev:type> - <maml:name>List`1[Int32]</maml:name> + <maml:name>DateTime</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleTimeZone</maml:name> + <maml:name>TimeWindowTimeZone</maml:name> <maml:description> - <maml:para>The time zone of the schedule.</maml:para> + <maml:para>The time zone of the time window.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> diff --git a/src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs b/src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs new file mode 100644 index 000000000000..5839ecd1a172 --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Insights.Models; + +namespace Microsoft.Azure.Commands.Insights.OutputClasses +{ + /// <summary> + /// Wrapps around the UsageMetric and exposes a summary of the properties properties + /// </summary> + public class PSUsageMetric : UsageMetric + { + /// <summary> + /// Gets or sets the Name of the usage metric + /// </summary> + public new string Name { get; set; } + + /// <summary> + /// Initializes a new instance of the PSUsageMetric class. + /// </summary> + /// <param name="usageMetric">The input UsageMetric object</param> + public PSUsageMetric(UsageMetric usageMetric) + { + // Keep the original value (localized string, Dictionary, List) in the base + base.Name = usageMetric.Name; + + this.CurrentValue = usageMetric.CurrentValue; + this.Limit = usageMetric.Limit; + this.Name = usageMetric.Name != null ? usageMetric.Name.LocalizedValue : null; + this.NextResetTime = usageMetric.NextResetTime; + this.QuotaPeriod = usageMetric.QuotaPeriod; + this.Unit = usageMetric.Unit; + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs new file mode 100644 index 000000000000..a151c6a56cdb --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs @@ -0,0 +1,129 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading; +using Microsoft.Azure.Commands.Insights.OutputClasses; +using Microsoft.Azure.Insights.Models; + +namespace Microsoft.Azure.Commands.Insights.UsageMetrics +{ + /// <summary> + /// Get the list of usage metrics for a resource. + /// </summary> + [Cmdlet(VerbsCommon.Get, "UsageMetrics"), OutputType(typeof(UsageMetric[]))] + public class GetUsageMetricsCommand : InsightsClientCmdletBase + { + /// <summary> + /// Default value of the timerange to search for usage metrics + /// </summary> + public static readonly TimeSpan DefaultTimeRange = TimeSpan.FromHours(1); + + public static readonly string DefaultApiVersion = "2014-04-01"; + + /// <summary> + /// Gets or sets the ResourceId parameter of the cmdlet + /// </summary> + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource Id")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// <summary> + /// Gets or sets the ApiVersion parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The API version string")] + [ValidateNotNullOrEmpty] + public string ApiVersion { get; set; } + + /// <summary> + /// Gets or sets the starttime parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The start time of the query")] + public DateTime StartTime { get; set; } + + /// <summary> + /// Gets or sets the endtime parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The end time of the query")] + public DateTime EndTime { get; set; } + + /// <summary> + /// Gets or sets the metricnames parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The metric names of the query")] + [ValidateNotNullOrEmpty] + public string[] MetricNames { get; set; } + + /// <summary> + /// Process the general parameters (i.e. defined in this class). The particular parameters are a responsibility of the descendants after adding a method to process more parameters. + /// </summary> + /// <returns>The query filter to be used by the cmdlet</returns> + protected string ProcessParameters() + { + var buffer = new StringBuilder(); + if (this.MetricNames != null) + { + var metrics = this.MetricNames.Select(n => string.Concat("name.value eq '", n, "'")).Aggregate((a, b) => string.Concat(a, " or ", b)); + + buffer.Append("("); + buffer.Append(metrics); + buffer.Append(")"); + } + + // EndTime defaults to Now + if (this.EndTime == default(DateTime)) + { + this.EndTime = DateTime.Now; + } + + // StartTime defaults to EndTime - DefaultTimeRange (NOTE: EndTime defaults to Now) + if (this.StartTime == default(DateTime)) + { + this.StartTime = this.EndTime.Subtract(DefaultTimeRange); + } + + buffer.Append(" and startTime eq "); + buffer.Append(this.StartTime.ToString("O")); + buffer.Append(" and endTime eq "); + buffer.Append(this.EndTime.ToString("O")); + + string queryFilter = buffer.ToString(); + if (queryFilter.StartsWith(" and ")) + { + queryFilter = queryFilter.Substring(4); + } + + return queryFilter.Trim(); + } + + /// <summary> + /// Execute the cmdlet + /// </summary> + protected override void ExecuteCmdletInternal() + { + string queryFilter = this.ProcessParameters(); + string apiVersion = this.ApiVersion ?? DefaultApiVersion; + + // Call the proper API methods to return a list of raw records. + // If fullDetails is present full details of the records displayed, otherwise only a summary of the values is displayed + UsageMetricListResponse response = this.InsightsClient.UsageMetricOperations.ListAsync(resourceUri: this.ResourceId, filterString: queryFilter, apiVersion: apiVersion, cancellationToken: CancellationToken.None).Result; + var records = response.UsageMetricCollection.Value.Select(e => new PSUsageMetric(e)).ToArray(); + + WriteObject(sendToPipeline: records); + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights/packages.config b/src/ResourceManager/Insights/Commands.Insights/packages.config index d5aa7fa27338..22de9e39c385 100644 --- a/src/ResourceManager/Insights/Commands.Insights/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights/packages.config @@ -4,7 +4,7 @@ <package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Authentication" version="1.0.25-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" /> - <package id="Microsoft.Azure.Insights" version="0.7.2-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Insights" version="0.7.7-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> From bd5f226ebb2974adf2d6e82b914b3e22284d2f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= <gucalder@microsoft.com> Date: Wed, 22 Apr 2015 11:18:11 -0700 Subject: [PATCH 3/8] FW: Fixing minor issues in the code, changing the return type of the Get-UsageMetrics Cmdlet. --- .../GetUsageMetricsCommandTests.cs | 7 +++++-- .../UsageMetrics/GetUsageMetricsCommand.cs | 18 ++++++++++++++---- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs index c949e4267c5e..b0fad90a49b3 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs @@ -49,7 +49,8 @@ public GetUsageMetricsCommandTests() response = Utilities.InitializeUsageMetricResponse(); - insightsUsageMetricOperationsMock.Setup(f => f.ListAsync(It.IsAny<string>(), It.IsAny<string>(), It.IsAny<string>(), It.IsAny<CancellationToken>())) + insightsUsageMetricOperationsMock + .Setup(f => f.ListAsync(It.IsAny<string>(), It.IsAny<string>(), It.IsAny<string>(), It.IsAny<CancellationToken>())) .Returns(Task.FromResult<UsageMetricListResponse>(response)) .Callback((string f, string s, string a, CancellationToken t) => { @@ -58,7 +59,9 @@ public GetUsageMetricsCommandTests() apiVersion = a; }); - insightsClientMock.SetupGet(f => f.UsageMetricOperations).Returns(this.insightsUsageMetricOperationsMock.Object); + insightsClientMock + .SetupGet(f => f.UsageMetricOperations) + .Returns(this.insightsUsageMetricOperationsMock.Object); } private void CleanParamVariables() diff --git a/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs index a151c6a56cdb..b39cc7590b51 100644 --- a/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Insights.UsageMetrics /// <summary> /// Get the list of usage metrics for a resource. /// </summary> - [Cmdlet(VerbsCommon.Get, "UsageMetrics"), OutputType(typeof(UsageMetric[]))] + [Cmdlet(VerbsCommon.Get, "UsageMetrics"), OutputType(typeof(PSUsageMetric[]))] public class GetUsageMetricsCommand : InsightsClientCmdletBase { /// <summary> @@ -33,6 +33,10 @@ public class GetUsageMetricsCommand : InsightsClientCmdletBase /// </summary> public static readonly TimeSpan DefaultTimeRange = TimeSpan.FromHours(1); + /// <summary> + /// Default API version string for the underlying RP. + /// The Insights backend gets the data from the RPs, and the RPs don not necessarily use the same API version. + /// </summary> public static readonly string DefaultApiVersion = "2014-04-01"; /// <summary> @@ -77,7 +81,9 @@ protected string ProcessParameters() var buffer = new StringBuilder(); if (this.MetricNames != null) { - var metrics = this.MetricNames.Select(n => string.Concat("name.value eq '", n, "'")).Aggregate((a, b) => string.Concat(a, " or ", b)); + var metrics = this.MetricNames + .Select(n => string.Concat("name.value eq '", n, "'")) + .Aggregate((a, b) => string.Concat(a, " or ", b)); buffer.Append("("); buffer.Append(metrics); @@ -120,8 +126,12 @@ protected override void ExecuteCmdletInternal() // Call the proper API methods to return a list of raw records. // If fullDetails is present full details of the records displayed, otherwise only a summary of the values is displayed - UsageMetricListResponse response = this.InsightsClient.UsageMetricOperations.ListAsync(resourceUri: this.ResourceId, filterString: queryFilter, apiVersion: apiVersion, cancellationToken: CancellationToken.None).Result; - var records = response.UsageMetricCollection.Value.Select(e => new PSUsageMetric(e)).ToArray(); + UsageMetricListResponse response = this.InsightsClient.UsageMetricOperations + .ListAsync(resourceUri: this.ResourceId, filterString: queryFilter, apiVersion: apiVersion, cancellationToken: CancellationToken.None) + .Result; + var records = response.UsageMetricCollection.Value + .Select(e => new PSUsageMetric(e)) + .ToArray(); WriteObject(sendToPipeline: records); } From 69fd150901838752d724604f4e7b4f2f52d002b9 Mon Sep 17 00:00:00 2001 From: James Tao <jamestao@microsoft.com> Date: Wed, 22 Apr 2015 11:29:10 -0700 Subject: [PATCH 4/8] Add test for Get-Metric on a ElasticPool --- .../Commands.Sql.Test.csproj | 3 + .../ScenarioTests/ElasticPoolCrudTests.cs | 7 + .../ScenarioTests/ElasticPoolCrudTests.ps1 | 25 +++ .../TestElasticPoolMetricGet.json | 188 ++++++++++++++++++ .../Commands.Sql/Common/AzureSqlCmdletBase.cs | 10 +- .../Model/AzureSqlElasticPoolModel.cs | 5 + .../Services/AzureSqlElasticPoolAdapter.cs | 1 + .../AzureSqlElasticPoolCommunicator.cs | 4 +- 8 files changed, 239 insertions(+), 4 deletions(-) create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index c9a813166d92..c575dcdc9db0 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -319,6 +319,9 @@ <None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests\TestElasticPoolGet.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests\TestElasticPoolMetricGet.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests\TestElasticPoolRemove.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs index 2ba85852f20b..3b5b030343c4 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs @@ -41,6 +41,13 @@ public void TestElasticPoolGet() RunPowerShellTest("Test-GetElasticPool"); } + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestElasticPoolMetricGet() + { + RunPowerShellTest("Test-GetElasticPoolMetric"); + } + [Fact] [Trait(Category.Sql, Category.CheckIn)] public void TestElasticPoolRemove() diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 index 167ff8d5fde3..c6ed4edc81a0 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 @@ -151,6 +151,31 @@ function Test-GetElasticPool } } +<# + .SYNOPSIS + Tests getting an elastic pool metric +#> +function Test-GetElasticPoolMetric +{ + # This test requires that an elastic pool has been created and has metrics ready + # To prevent requiring putting something like a Sleep(10 minutes) in the code + # this test requires the server/elastic pool be pre-created with metrics data available. + + # Setup and retrieve the existing pool + $rgName = "test-group" + $serverName = "groupserver1" + $elasticPoolName = "testpool2" + + $ep1 = Get-AzureSqlElasticPool -ServerName $serverName -ResourceGroupName $rgName ` + -ElasticPoolName $elasticPoolName + Assert-NotNull $ep1 + + # Get pool metrics with all values + $metrics = $ep1 | Get-Metrics -TimeGrain "0:5:0" -StartTime "2015-04-22T16:00:00Z" -EndTime "2015-04-22T17:00:00Z" + Assert-NotNull $metrics + Assert-True { $metrics.Count -gt 0 } +} + <# .SYNOPSIS diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json new file mode 100644 index 000000000000..edeeb159d069 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json @@ -0,0 +1,188 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/test-group/providers/Microsoft.Sql/servers/groupserver1/elasticPools/testpool2?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9ncm91cHNlcnZlcjEvZWxhc3RpY1Bvb2xzL3Rlc3Rwb29sMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9a369779-b9ed-4bc8-8bad-3d3d445c9ef4" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/test-group/providers/Microsoft.Sql/servers/groupserver1/elasticPools/testpool2\",\r\n \"name\": \"testpool2\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2015-04-21T22:41:37.77\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "426" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "27b29ab9-53ab-4afd-b4b3-f8b4a87d88d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "e7763038-0740-48cf-819e-6ae015473398" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150422T182240Z:e7763038-0740-48cf-819e-6ae015473398" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2F7bc8d82a-e704-45b1-8049-5a971ce10ce2%2FresourceGroups%2Ftest-group%2Fproviders%2FMicrosoft.Sql%2Fservers%2Fgroupserver1%2FelasticPools%2Ftestpool2/metricDefinitions?api-version=2014-04-01&$filter=", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkY3YmM4ZDgyYS1lNzA0LTQ1YjEtODA0OS01YTk3MWNlMTBjZTIlMkZyZXNvdXJjZUdyb3VwcyUyRnRlc3QtZ3JvdXAlMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3FsJTJGc2VydmVycyUyRmdyb3Vwc2VydmVyMSUyRmVsYXN0aWNQb29scyUyRnRlc3Rwb29sMi9tZXRyaWNEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxJiRmaWx0ZXI9", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json" + ], + "x-ms-version": [ + "2014-04-01" + ], + "User-Agent": [ + "Microsoft.Azure.Insights.InsightsClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"cpu_percent\",\r\n \"localizedValue\": \"CPU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"physical_data_read_percent\",\r\n \"localizedValue\": \"Data IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"log_write_percent\",\r\n \"localizedValue\": \"Log IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"dtu_consumption_percent\",\r\n \"localizedValue\": \"DTU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"storage_percent\",\r\n \"localizedValue\": \"Storage percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01428b2f-a365-4434-bfac-c882f7a97d50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "fc6c3110-91c5-410c-8d72-3dfdf7d04193" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150422T182244Z:fc6c3110-91c5-410c-8d72-3dfdf7d04193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:43 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2F7bc8d82a-e704-45b1-8049-5a971ce10ce2%2FresourceGroups%2Ftest-group%2Fproviders%2FMicrosoft.Sql%2Fservers%2Fgroupserver1%2FelasticPools%2Ftestpool2/metrics?api-version=2014-04-01&$filter=(name.value%20eq%20'cpu_percent'%20or%20name.value%20eq%20'physical_data_read_percent'%20or%20name.value%20eq%20'log_write_percent'%20or%20name.value%20eq%20'dtu_consumption_percent'%20or%20name.value%20eq%20'storage_percent')%20and%20timeGrain%20eq%20duration'PT5M'%20and%20startTime%20eq%202015-04-22T16:00:00.0000000Z%20and%20endTime%20eq%202015-04-22T17:00:00.0000000Z", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkY3YmM4ZDgyYS1lNzA0LTQ1YjEtODA0OS01YTk3MWNlMTBjZTIlMkZyZXNvdXJjZUdyb3VwcyUyRnRlc3QtZ3JvdXAlMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3FsJTJGc2VydmVycyUyRmdyb3Vwc2VydmVyMSUyRmVsYXN0aWNQb29scyUyRnRlc3Rwb29sMi9tZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEmJGZpbHRlcj0lMjhuYW1lLnZhbHVlJTIwZXElMjAlMjdjcHVfcGVyY2VudCUyNyUyMG9yJTIwbmFtZS52YWx1ZSUyMGVxJTIwJTI3cGh5c2ljYWxfZGF0YV9yZWFkX3BlcmNlbnQlMjclMjBvciUyMG5hbWUudmFsdWUlMjBlcSUyMCUyN2xvZ193cml0ZV9wZXJjZW50JTI3JTIwb3IlMjBuYW1lLnZhbHVlJTIwZXElMjAlMjdkdHVfY29uc3VtcHRpb25fcGVyY2VudCUyNyUyMG9yJTIwbmFtZS52YWx1ZSUyMGVxJTIwJTI3c3RvcmFnZV9wZXJjZW50JTI3JTI5JTIwYW5kJTIwdGltZUdyYWluJTIwZXElMjBkdXJhdGlvbiUyN1BUNU0lMjclMjBhbmQlMjBzdGFydFRpbWUlMjBlcSUyMDIwMTUtMDQtMjJUMTYlM0EwMCUzQTAwLjAwMDAwMDBaJTIwYW5kJTIwZW5kVGltZSUyMGVxJTIwMjAxNS0wNC0yMlQxNyUzQTAwJTNBMDAuMDAwMDAwMFo=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json" + ], + "x-ms-version": [ + "2014-04-01" + ], + "User-Agent": [ + "Microsoft.Azure.Insights.InsightsClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"cpu_percent\",\r\n \"localizedValue\": \"CPU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"physical_data_read_percent\",\r\n \"localizedValue\": \"Data IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"log_write_percent\",\r\n \"localizedValue\": \"Log IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"dtu_consumption_percent\",\r\n \"localizedValue\": \"DTU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"storage_percent\",\r\n \"localizedValue\": \"Storage percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "42cb45fe-8274-4e0c-a01b-447b9c77474b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "cbdaaff9-431c-4e91-9b71-41898c442f2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150422T182249Z:cbdaaff9-431c-4e91-9b71-41898c442f2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs index 9d200de515d4..bb2621ba649d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs @@ -96,11 +96,17 @@ public override void ExecuteCmdlet() if(responseModel != null) { - if (WriteResult()) this.WriteObject(responseModel); + if (WriteResult()) + { + this.WriteObject(responseModel, true); + } } else { - if (WriteResult()) this.WriteObject(updatedModel); + if (WriteResult()) + { + this.WriteObject(updatedModel); + } } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs index a25bba496bb8..e94e7b0f8e61 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs @@ -23,6 +23,11 @@ namespace Microsoft.Azure.Commands.Sql.ElasticPool.Model /// </summary> public class AzureSqlElasticPoolModel { + /// <summary> + /// Gets or sets the resource id for this resource + /// </summary> + public string ResourceId { get; set; } + /// <summary> /// Gets or sets the name of the resource group /// </summary> diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs index 0cf90844367b..914109dc70ac 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs @@ -268,6 +268,7 @@ private AzureSqlElasticPoolModel CreateElasticPoolModelFromResponse(string resou { AzureSqlElasticPoolModel model = new AzureSqlElasticPoolModel(); + model.ResourceId = pool.Id; model.ResourceGroupName = resourceGroup; model.ServerName = serverName; model.ElasticPoolName = pool.Name; diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs index 33bcae054a48..d7ac36caba4d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs @@ -33,11 +33,11 @@ public class AzureSqlElasticPoolCommunicator /// The Sql client to be used by this end points communicator /// </summary> private static SqlManagementClient SqlClient { get; set; } - + /// <summary> /// Gets or set the Azure subscription /// </summary> - private static AzureSubscription Subscription {get ; set; } + private static AzureSubscription Subscription { get; set; } /// <summary> /// Gets or sets the Azure profile From 113811bf184db546dfbd9cf3211c1b130867a085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= <gucalder@microsoft.com> Date: Wed, 22 Apr 2015 11:31:17 -0700 Subject: [PATCH 5/8] FW: Removing unnecessary empty tag in project file. --- .../Insights/Commands.Insights/Commands.Insights.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj index 6275758fef62..7135216956bf 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj +++ b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj @@ -188,7 +188,6 @@ <SubType>Designer</SubType> </EmbeddedResource> </ItemGroup> - <ItemGroup /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> From 52090d51104770b1789f048da8d5a0d8bf07ff77 Mon Sep 17 00:00:00 2001 From: unknown <hylee@HYONHO2.redmond.corp.microsoft.com> Date: Wed, 22 Apr 2015 11:46:41 -0700 Subject: [PATCH 6/8] Test Recording for CustomScript and VMAccess extension tests --- .../Commands.Compute.Test.csproj | 6 + .../VirtualMachineExtensionTests.cs | 8 +- .../VirtualMachineExtensionTests.ps1 | 94 +- .../TestVirtualMachineAccessExtension.json | 5631 +++++++++++++++ ...stVirtualMachineCustomScriptExtension.json | 6203 +++++++++++++++++ 5 files changed, 11887 insertions(+), 55 deletions(-) create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 945d94030dad..e69876348ebb 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -247,6 +247,12 @@ <None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.StorageAccountTests\TestStorageAccount.json"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> + <None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests\TestVirtualMachineAccessExtension.json"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests\TestVirtualMachineCustomScriptExtension.json"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </None> <None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests\TestVirtualMachineExtension.json"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs index ec7b65ed70c0..74f85cd98ed4 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs @@ -26,17 +26,15 @@ public void TestVirtualMachineExtension() ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineExtension"); } - [Fact - (Skip = "Disable this test until the breaking api is checked in.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualMachineCustomScriptExtension() { ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineCustomScriptExtension"); } - [Fact - (Skip = "Disable this test until the breaking api is checked in.")] - [Trait(Category.AcceptanceType, Category.CheckIn)] // disable this test until the breaking api is checked in. + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualMachineAccessExtension() { ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineAccessExtension"); diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 index f1a5eab4aea0..64d7fe976d4f 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 @@ -25,7 +25,7 @@ function Test-VirtualMachineExtension try { # Common - $loc = 'West US'; + $loc = 'East Asia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware @@ -64,11 +64,11 @@ function Test-VirtualMachineExtension $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; @@ -77,11 +77,11 @@ function Test-VirtualMachineExtension Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -93,7 +93,6 @@ function Test-VirtualMachineExtension $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; $p = Set-AzureVMSourceImage -VM $p -Name $img; @@ -203,11 +202,11 @@ function Test-VirtualMachineCustomScriptExtension try { # Common - $loc = Get-ProviderLocation ResourceManagement; + $loc = 'East Asia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware - $vmsize = 'Standard_A2'; + $vmsize = 'Standard_A4'; $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; @@ -240,14 +239,11 @@ function Test-VirtualMachineCustomScriptExtension $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; - $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; - $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; @@ -255,11 +251,11 @@ function Test-VirtualMachineCustomScriptExtension Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -271,7 +267,6 @@ function Test-VirtualMachineCustomScriptExtension $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; $p = Set-AzureVMSourceImage -VM $p -Name $img; @@ -290,21 +285,24 @@ function Test-VirtualMachineCustomScriptExtension $extver = '1.1'; $publisher = 'Microsoft.Compute'; $exttype = 'CustomScriptExtension'; - $fileToExecute = "a.exe"; - $containderName = "script" + $fileToExecute = 'a.exe'; + $containderName = 'script'; # Set custom script extension Set-AzureVMCustomScriptExtension -ResourceGroupName $rgname -Location $loc -VMName $vmname -Name $extname -TypeHandlerVersion $extver -StorageAccountName $stoname -StorageAccountKey $stokey -FileName $fileToExecute -ContainerName $containderName; # Get VM Extension $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname; + + $expCommand = 'powershell -ExecutionPolicy Unrestricted -file ' + $fileToExecute + ' '; + $expUri = $stoname + '.blob.core.windows.net/' + $containderName + '/' + $fileToExecute; Assert-AreEqual $ext.ResourceGroupName $rgname; Assert-AreEqual $ext.Name $extname; Assert-AreEqual $ext.Publisher $publisher; Assert-AreEqual $ext.ExtensionType $exttype; Assert-AreEqual $ext.TypeHandlerVersion $extver; - Assert-AreEqual $ext.CommandToExecute "powershell -ExecutionPolicy Unrestricted -file " + $fileToExecute + " "; - Assert-True $ext.Uri[0].Contains($stoname + ".blob.core.windows.net/" + $containderName + "/" + $fileToExecute); + Assert-AreEqual $ext.CommandToExecute $expCommand; + Assert-True {$ext.Uri[0].Contains($expUri)}; Assert-NotNull $ext.ProvisioningState; $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname -Status; @@ -313,8 +311,8 @@ function Test-VirtualMachineCustomScriptExtension Assert-AreEqual $ext.Publisher $publisher; Assert-AreEqual $ext.ExtensionType $exttype; Assert-AreEqual $ext.TypeHandlerVersion $extver; - Assert-AreEqual $ext.CommandToExecute "powershell -ExecutionPolicy Unrestricted -file " + $fileToExecute + " "; - Assert-True $ext.Uri[0].Contains($stoname + ".blob.core.windows.net/" + $containderName + "/" + $fileToExecute); + Assert-AreEqual $ext.CommandToExecute $expCommand; + Assert-True {$ext.Uri[0].Contains($expUri)}; Assert-NotNull $ext.ProvisioningState; Assert-NotNull $ext.Statuses; @@ -329,13 +327,13 @@ function Test-VirtualMachineCustomScriptExtension Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; # Check Extensions in VM - Assert-AreEqual $vm1.Resources.Extensions.Count 1; - Assert-AreEqual $vm1.Resources.Extensions[0].Name $extname; - Assert-AreEqual $vm1.Resources.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; - Assert-AreEqual $vm1.Resources.Extensions[0].Publisher $publisher; - Assert-AreEqual $vm1.Resources.Extensions[0].ExtensionType $exttype; - Assert-AreEqual $vm1.Resources.Extensions[0].TypeHandlerVersion $extver; - Assert-NotNull $vm1.Resources.Extensions[0].Settings; + Assert-AreEqual $vm1.Extensions.Count 1; + Assert-AreEqual $vm1.Extensions[0].Name $extname; + Assert-AreEqual $vm1.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; + Assert-AreEqual $vm1.Extensions[0].Publisher $publisher; + Assert-AreEqual $vm1.Extensions[0].ExtensionType $exttype; + Assert-AreEqual $vm1.Extensions[0].TypeHandlerVersion $extver; + Assert-NotNull $vm1.Extensions[0].Settings; # *** TODO: The removal call did not return. 12/12/2014 } @@ -360,11 +358,11 @@ function Test-VirtualMachineAccessExtension try { # Common - $loc = Get-ProviderLocation ResourceManagement;; + $loc = 'East Asia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware - $vmsize = 'Standard_A2'; + $vmsize = 'Standard_A4'; $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; @@ -397,14 +395,11 @@ function Test-VirtualMachineAccessExtension $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; - $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; - $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; @@ -412,11 +407,11 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -428,7 +423,6 @@ function Test-VirtualMachineAccessExtension $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; $p = Set-AzureVMSourceImage -VM $p -Name $img; @@ -484,13 +478,13 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; # Check Extensions in VM - Assert-AreEqual $vm1.Resources.Extensions.Count 1; - Assert-AreEqual $vm1.Resources.Extensions[0].Name $extname; - Assert-AreEqual $vm1.Resources.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; - Assert-AreEqual $vm1.Resources.Extensions[0].Publisher $publisher; - Assert-AreEqual $vm1.Resources.Extensions[0].ExtensionType $exttype; - Assert-AreEqual $vm1.Resources.Extensions[0].TypeHandlerVersion $extver; - Assert-NotNull $vm1.Resources.Extensions[0].Settings; + Assert-AreEqual $vm1.Extensions.Count 1; + Assert-AreEqual $vm1.Extensions[0].Name $extname; + Assert-AreEqual $vm1.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; + Assert-AreEqual $vm1.Extensions[0].Publisher $publisher; + Assert-AreEqual $vm1.Extensions[0].ExtensionType $exttype; + Assert-AreEqual $vm1.Extensions[0].TypeHandlerVersion $extver; + Assert-NotNull $vm1.Extensions[0].Settings; # *** TODO: The removal call did not return. 12/12/2014 } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json new file mode 100644 index 000000000000..e32faae82039 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json @@ -0,0 +1,5631 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31936" + ], + "x-ms-request-id": [ + "580cd22b-0bd2-47b6-8f55-6479f73dc3d7" + ], + "x-ms-correlation-request-id": [ + "580cd22b-0bd2-47b6-8f55-6479f73dc3d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100512Z:580cd22b-0bd2-47b6-8f55-6479f73dc3d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-request-id": [ + "8e536808-27c8-4666-83d0-bac9b2b22b10" + ], + "x-ms-correlation-request-id": [ + "8e536808-27c8-4666-83d0-bac9b2b22b10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102509Z:8e536808-27c8-4666-83d0-bac9b2b22b10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:09 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690\",\r\n \"name\": \"pstestrg3690\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "6aea95c6-62a5-46b6-b41f-a197afa720c9" + ], + "x-ms-correlation-request-id": [ + "6aea95c6-62a5-46b6-b41f-a197afa720c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100514Z:6aea95c6-62a5-46b6-b41f-a197afa720c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31935" + ], + "x-ms-request-id": [ + "5fea3a7c-5c00-46c1-b0fe-22cdcaea6ce8" + ], + "x-ms-correlation-request-id": [ + "5fea3a7c-5c00-46c1-b0fe-22cdcaea6ce8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100514Z:5fea3a7c-5c00-46c1-b0fe-22cdcaea6ce8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f2dada49-021e-44c3-8ea5-7a4417a6856c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "79c09a6e-4280-49f9-ac2d-f2c50aae42da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100514Z:79c09a6e-4280-49f9-ac2d-f2c50aae42da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "281399db-b826-461d-a6c4-8a3e5555bfa3" + ], + "x-ms-correlation-request-id": [ + "281399db-b826-461d-a6c4-8a3e5555bfa3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100515Z:281399db-b826-461d-a6c4-8a3e5555bfa3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef71efa3-d3ac-42d4-a143-c67776007ae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "5a31b548-1e22-4c5f-89a0-12df4df01b69" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100522Z:5a31b548-1e22-4c5f-89a0-12df4df01b69" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fd62a73-41b1-4096-9040-9398a9545ce0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "ab81965a-7ff4-4d80-b8b4-861d32f21660" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100522Z:ab81965a-7ff4-4d80-b8b4-861d32f21660" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg3690\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg3690\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "503" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690\",\r\n \"etag\": \"W/\\\"16a8d26c-13c0-4abd-8fab-6a23f8e1b9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\",\r\n \"etag\": \"W/\\\"16a8d26c-13c0-4abd-8fab-6a23f8e1b9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32e653df-02e1-46e5-ae8e-22e9d0f8ff0f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/32e653df-02e1-46e5-ae8e-22e9d0f8ff0f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "437635ef-39d6-4236-859d-730c401e9d0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100521Z:437635ef-39d6-4236-859d-730c401e9d0a" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/32e653df-02e1-46e5-ae8e-22e9d0f8ff0f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8zMmU2NTNkZi0wMmUxLTQ2ZTUtYWU4ZS0yMmU5ZDBmOGZmMGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a329cd8c-d076-45a9-a65b-ab52dc799341" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "b2b63c66-6e68-4f77-be6c-d73e6263d1c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100521Z:b2b63c66-6e68-4f77-be6c-d73e6263d1c7" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fcd0055d-a970-4443-9455-aa93edea771e" + ], + "x-ms-correlation-request-id": [ + "fcd0055d-a970-4443-9455-aa93edea771e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100522Z:fcd0055d-a970-4443-9455-aa93edea771e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:22 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\",\r\n \"etag\": \"W/\\\"d183b710-8317-4c3d-81ec-6d057ba0440f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\",\r\n \"fqdn\": \"pubippstestrg3690.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3bddc230-bc9d-4c13-aa6a-9490b91d58f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d183b710-8317-4c3d-81ec-6d057ba0440f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "1df66e25-e156-4707-b3b7-031064e3a160" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100529Z:1df66e25-e156-4707-b3b7-031064e3a160" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\",\r\n \"etag\": \"W/\\\"d183b710-8317-4c3d-81ec-6d057ba0440f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\",\r\n \"fqdn\": \"pubippstestrg3690.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2185fb21-b4ab-4e73-8487-7fc40d91dbad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d183b710-8317-4c3d-81ec-6d057ba0440f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "d3588eca-df07-49f3-9718-9b72e35f0077" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100529Z:d3588eca-df07-49f3-9718-9b72e35f0077" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg3690\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "257" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\",\r\n \"etag\": \"W/\\\"cdb4c220-abb8-48a2-8b87-38d7da99197e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\",\r\n \"fqdn\": \"pubippstestrg3690.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "555" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "026ff67a-598d-4283-925c-700e0f9093ec" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/026ff67a-598d-4283-925c-700e0f9093ec?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "84dfc670-9384-4e4d-9cff-16ffa28de65b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100528Z:84dfc670-9384-4e4d-9cff-16ffa28de65b" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/026ff67a-598d-4283-925c-700e0f9093ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wMjZmZjY3YS01OThkLTQyODMtOTI1Yy03MDBlMGY5MDkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db915db2-f2f3-4773-ba42-8bd6bd02520e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "1c386474-cb6d-479d-955c-690a278ca3ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100528Z:1c386474-cb6d-479d-955c-690a278ca3ec" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "98a2ee48-75a6-4014-9635-52218f3f5182" + ], + "x-ms-correlation-request-id": [ + "98a2ee48-75a6-4014-9635-52218f3f5182" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100529Z:98a2ee48-75a6-4014-9635-52218f3f5182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "23e409dd-7f36-4eda-a043-ab533f0316bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "2245a138-e444-43d6-93a0-94f215658f58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100534Z:2245a138-e444-43d6-93a0-94f215658f58" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b49ef24-f313-4695-b2c2-2eda813296f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "c573dddb-3efc-4683-b44a-02b99ca5c9e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100534Z:c573dddb-3efc-4683-b44a-02b99ca5c9e4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg3690\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "860" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0e94f10-d459-494b-8ce7-c6e1bb9c7f91" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/a0e94f10-d459-494b-8ce7-c6e1bb9c7f91?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "aaa9616a-5be9-4e8a-8ffd-9a0c182d375c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100533Z:aaa9616a-5be9-4e8a-8ffd-9a0c182d375c" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/a0e94f10-d459-494b-8ce7-c6e1bb9c7f91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMGU5NGYxMC1kNDU5LTQ5NGItOGNlNy1jNmUxYmI5YzdmOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0e1be1ad-d029-4b12-ad31-f51f21543910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "53a97361-aed9-44b4-a9a0-1e7499027b09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100534Z:53a97361-aed9-44b4-a9a0-1e7499027b09" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "1962d9be-efbf-44c3-a7cd-718d567c0de0" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "3c768198-d1f0-4eec-81aa-9451fdb20b0d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "3e97fb97-616a-4ba4-9cca-5d8d7444be5c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100541Z:3e97fb97-616a-4ba4-9cca-5d8d7444be5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNjNzY4MTk4LWQxZjAtNGVlYy04MWFhLTk0NTFmZGIyMGIwZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6155948c-ef09-4aaa-b62a-a0603cab6cd6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "8f0070b7-2072-4e58-a88b-7c5daaa787ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31934" + ], + "x-ms-correlation-request-id": [ + "0e86757a-a8b5-4881-af00-317e75463246" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100542Z:0e86757a-a8b5-4881-af00-317e75463246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNjNzY4MTk4LWQxZjAtNGVlYy04MWFhLTk0NTFmZGIyMGIwZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2f96a97-dc47-42d6-8802-32360601549e" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06c2545b-3fd9-4eb4-a4da-713e1ded655d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31933" + ], + "x-ms-correlation-request-id": [ + "a0b97d46-6de9-497d-bae7-87704d745507" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100607Z:a0b97d46-6de9-497d-bae7-87704d745507" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb62f01a-4adc-4def-be9a-ef1a0f0c4e8f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690\",\r\n \"name\": \"stopstestrg3690\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg3690.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3690.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3690.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T10:05:39.493588Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f1bde42-a17d-4a8f-a8c5-941df16aacfb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31932" + ], + "x-ms-correlation-request-id": [ + "c9a514fc-bc47-4fcf-8939-306b277d1e52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100608Z:c9a514fc-bc47-4fcf-8939-306b277d1e52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "614629f1-0a36-445e-b9f6-c6854ac2216d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690\",\r\n \"name\": \"stopstestrg3690\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg3690.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3690.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3690.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T10:05:39.493588Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73010f0b-5273-4170-b7cd-281564e01e16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31931" + ], + "x-ms-correlation-request-id": [ + "c48155c9-96c3-4fe5-b417-8e644b4bf8f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100608Z:c48155c9-96c3-4fe5-b417-8e644b4bf8f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "989dc5a7-7596-4b96-b9e1-7350cf731f96" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"Y7GcPbFQgRM80XtfPT2EOthW0CISRFh7i+StgssOM2uDcUtgWMpQc+lF5fe0dgJO/UL2tSc0XPsbiAuB+stkDg==\",\r\n \"key2\": \"ESBSPUgIVFy7YcO9HAe1XtQW1oeZU7+v81G4gl0j0UCcDwGqmZK1bQLK+zJVfzPh7bqBzuKHjTOQrdawXMvWew==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ee79d09-9f6d-46a4-bff2-402360695c00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1ecd9996-8677-4015-82a0-d34bad0e58ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100608Z:1ecd9996-8677-4015-82a0-d34bad0e58ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg3690\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg3690\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1746" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690\",\r\n \"name\": \"vmpstestrg3690\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "536dafea-2c00-482a-96de-b13465920ce3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ebf02364-e4df-4f03-958b-ae760dc36439" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100619Z:ebf02364-e4df-4f03-958b-ae760dc36439" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc78aba7-4dbf-4d4f-91a4-13388689d2f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "727b8fc1-2e12-47b4-b7ce-3ba68d81c1cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100620Z:727b8fc1-2e12-47b4-b7ce-3ba68d81c1cb" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d4bfaa2-528f-4671-a3be-d15c1fdac54e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "05ad06dd-08e2-415c-bc48-c2a71c31be30" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100650Z:05ad06dd-08e2-415c-bc48-c2a71c31be30" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d72ff20-7823-43ca-9980-d85b10cc4ada" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "34737c55-3fed-4dfe-a7ca-556030ef0c4c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100721Z:34737c55-3fed-4dfe-a7ca-556030ef0c4c" + ], + "Date": [ + "Wed, 22 Apr 2015 10:07:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a748f754-7d8d-48a5-b73d-fbaf05880af7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "75a51f93-0763-4c93-9bbd-9c8ccc9440c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100753Z:75a51f93-0763-4c93-9bbd-9c8ccc9440c2" + ], + "Date": [ + "Wed, 22 Apr 2015 10:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14f9cd2c-88c4-41b4-b121-24b452de7349" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "aff717e0-cbf0-47af-9829-980ed218bba7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100824Z:aff717e0-cbf0-47af-9829-980ed218bba7" + ], + "Date": [ + "Wed, 22 Apr 2015 10:08:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c78c27a6-2239-4c78-9ed3-81052c4b5589" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "ff3a3955-16df-45d6-b4ea-df4cf1d11a39" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100855Z:ff3a3955-16df-45d6-b4ea-df4cf1d11a39" + ], + "Date": [ + "Wed, 22 Apr 2015 10:08:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "367ae746-cecb-4af4-8186-93328362dfeb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "c6aafc5c-6f5b-47d6-b398-088d200bb398" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100927Z:c6aafc5c-6f5b-47d6-b398-088d200bb398" + ], + "Date": [ + "Wed, 22 Apr 2015 10:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "66047251-a6d5-4be7-9da0-2095f194e9ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "3141569b-b583-49df-85d1-d865187eb430" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100958Z:3141569b-b583-49df-85d1-d865187eb430" + ], + "Date": [ + "Wed, 22 Apr 2015 10:09:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fbc84ea2-fd1e-4d76-9e94-8719bc525afe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "9a2634fa-fd6e-4b41-990a-856126cc5bf2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101030Z:9a2634fa-fd6e-4b41-990a-856126cc5bf2" + ], + "Date": [ + "Wed, 22 Apr 2015 10:10:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\",\r\n \"endTime\": \"2015-04-22T03:10:38.054705-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a35a054-6ea3-4a92-8609-b32d3d4617d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "07d5abe4-6c00-4aa0-9a94-2a3437f195f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101101Z:07d5abe4-6c00-4aa0-9a94-2a3437f195f4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwL2V4dGVuc2lvbnMvY3NldGVzdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"protectedSettings\": {\r\n \"password\": \"FoO@123pstestrg3690\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "424" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "539" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78f04e35-1d76-4854-92e2-7c5472bd39b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "dba30c89-2dce-4311-b058-31c72ead2294" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101109Z:dba30c89-2dce-4311-b058-31c72ead2294" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6bf363de-5037-43b4-9d40-3ae697d25a14" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "12834458-2771-4ee8-a8af-64aee9b40426" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101110Z:12834458-2771-4ee8-a8af-64aee9b40426" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73e2edbc-4566-429f-b0a7-47dcc4cfcba4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "75d72708-4007-476b-a384-4698c3b5786f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101141Z:75d72708-4007-476b-a384-4698c3b5786f" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c665c91-0653-48f5-b770-3782b31f4137" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "30b95c72-91da-4a7b-a3c3-4f546d356a99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101212Z:30b95c72-91da-4a7b-a3c3-4f546d356a99" + ], + "Date": [ + "Wed, 22 Apr 2015 10:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bacb745a-3c38-4eb7-86aa-6eb61d6af379" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "91a15835-e6f2-40b7-b8ec-c7c51e2a0bb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101243Z:91a15835-e6f2-40b7-b8ec-c7c51e2a0bb6" + ], + "Date": [ + "Wed, 22 Apr 2015 10:12:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4484f033-091d-429f-9ff1-2c059916572b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "6422cbd5-0927-4369-ab83-edac07d0148e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101314Z:6422cbd5-0927-4369-ab83-edac07d0148e" + ], + "Date": [ + "Wed, 22 Apr 2015 10:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f32a6db3-6e85-4f33-9335-515d01eced14" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "be8a7064-1854-4ff1-b59d-62982b2ba2be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101345Z:be8a7064-1854-4ff1-b59d-62982b2ba2be" + ], + "Date": [ + "Wed, 22 Apr 2015 10:13:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3162be2-47aa-40e9-947c-5cc6fe6fef57" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "0b6bf13c-5079-49d0-81f2-7e1cb7ed60f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101416Z:0b6bf13c-5079-49d0-81f2-7e1cb7ed60f6" + ], + "Date": [ + "Wed, 22 Apr 2015 10:14:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85b1da7e-c268-4806-91ab-49a1532b849a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "cde81f25-e24d-4106-8c3d-9cb36c4cc612" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101448Z:cde81f25-e24d-4106-8c3d-9cb36c4cc612" + ], + "Date": [ + "Wed, 22 Apr 2015 10:14:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "491c7c2b-1334-41fe-a85a-bccc316191b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "9df09fc1-5088-464a-977d-07789ff1608f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101519Z:9df09fc1-5088-464a-977d-07789ff1608f" + ], + "Date": [ + "Wed, 22 Apr 2015 10:15:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b1647a2-4cd8-4f07-bf44-fc49ebeff19b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "bcf305c4-5f55-46cf-891b-c18f555b5e38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101550Z:bcf305c4-5f55-46cf-891b-c18f555b5e38" + ], + "Date": [ + "Wed, 22 Apr 2015 10:15:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aa88b4d2-8b5b-45d5-b36f-c48922632cef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "ec5f2f53-85a5-40a8-be75-81aac5009fa4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101621Z:ec5f2f53-85a5-40a8-be75-81aac5009fa4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:16:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bcfe31c9-e9c3-4ada-9907-a61319413605" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "a5a2e806-0de7-4091-b71d-c60b77144b7b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101652Z:a5a2e806-0de7-4091-b71d-c60b77144b7b" + ], + "Date": [ + "Wed, 22 Apr 2015 10:16:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d6073c2-965e-4b72-9e80-e19e3e9378b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "27358073-cc46-4d61-a972-b359f24e6214" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101723Z:27358073-cc46-4d61-a972-b359f24e6214" + ], + "Date": [ + "Wed, 22 Apr 2015 10:17:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e99c0be-5d26-4882-999e-03dc8c1af0bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "efadde68-7bb3-44c0-81c9-4973bb2ab25d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101754Z:efadde68-7bb3-44c0-81c9-4973bb2ab25d" + ], + "Date": [ + "Wed, 22 Apr 2015 10:17:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "970569a7-4638-4839-b081-9005f13da732" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "6faba1a5-0ccf-4370-852e-141871e33f31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101825Z:6faba1a5-0ccf-4370-852e-141871e33f31" + ], + "Date": [ + "Wed, 22 Apr 2015 10:18:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "943f88e7-a2a5-4a7d-a2cc-8edf52a66319" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "9cb46406-eabc-4972-84de-b6b3ead58f1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101856Z:9cb46406-eabc-4972-84de-b6b3ead58f1f" + ], + "Date": [ + "Wed, 22 Apr 2015 10:18:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3f219a9-21a2-42d1-9ef0-0fa1c691e43f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "66d9ce99-39dc-4a30-a313-e9a8cbcc3ec4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101927Z:66d9ce99-39dc-4a30-a313-e9a8cbcc3ec4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:19:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6e54f45-6e58-46c4-a3ed-7fd3c468745f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "6194551b-045c-40cd-846b-072fe6be1cc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101957Z:6194551b-045c-40cd-846b-072fe6be1cc7" + ], + "Date": [ + "Wed, 22 Apr 2015 10:19:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a777cec7-02cb-4dc6-a383-9063672ede29" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "4276139c-3ce4-4444-a53c-0ae05e7c2e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102029Z:4276139c-3ce4-4444-a53c-0ae05e7c2e9c" + ], + "Date": [ + "Wed, 22 Apr 2015 10:20:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ff0b6c6-ebc7-4724-93c8-fd0e673a0683" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "a6b5d3e9-dbbc-48a0-a51b-060a2772d7f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102100Z:a6b5d3e9-dbbc-48a0-a51b-060a2772d7f0" + ], + "Date": [ + "Wed, 22 Apr 2015 10:20:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6efaaccf-4241-421c-b2f3-ca582e8bccbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "b297df04-c48e-4927-a873-1240738a2375" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102131Z:b297df04-c48e-4927-a873-1240738a2375" + ], + "Date": [ + "Wed, 22 Apr 2015 10:21:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "180b9993-967e-4d95-98ff-832b1ef423cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "707aa796-bdb6-4f49-8432-4433350ea488" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102201Z:707aa796-bdb6-4f49-8432-4433350ea488" + ], + "Date": [ + "Wed, 22 Apr 2015 10:22:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "90b38b50-be42-4ab3-b2ea-800c215cc4d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "1b3a5103-72c4-4762-b845-b5240b3cd3a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102232Z:1b3a5103-72c4-4762-b845-b5240b3cd3a0" + ], + "Date": [ + "Wed, 22 Apr 2015 10:22:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5423581e-60e7-4026-8774-c685a5f110f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-correlation-request-id": [ + "cd067eb4-410c-464f-af85-62b83fba409a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102303Z:cd067eb4-410c-464f-af85-62b83fba409a" + ], + "Date": [ + "Wed, 22 Apr 2015 10:23:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "416bca77-59f7-4219-889c-0811f48d998c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "e9f2adc0-0e5f-47bb-95d1-db749b3aac20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102334Z:e9f2adc0-0e5f-47bb-95d1-db749b3aac20" + ], + "Date": [ + "Wed, 22 Apr 2015 10:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ef053de-d945-4b46-92d3-e66e8d987fd2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "c1a0d311-58df-4ac1-93ec-dbe51a8f3361" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102405Z:c1a0d311-58df-4ac1-93ec-dbe51a8f3361" + ], + "Date": [ + "Wed, 22 Apr 2015 10:24:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d0e0514d-8616-4d1f-bfd2-70b70d7fcb43" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "24844684-36e5-4072-ac6f-fb435b4be93e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102436Z:24844684-36e5-4072-ac6f-fb435b4be93e" + ], + "Date": [ + "Wed, 22 Apr 2015 10:24:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\",\r\n \"endTime\": \"2015-04-22T03:24:39.2635094-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd02082f-0172-4ec5-9cc1-60bcee6e1fce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "84bf9dc4-17df-461a-9ffc-995290f8c8dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102507Z:84bf9dc4-17df-461a-9ffc-995290f8c8dd" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwL2V4dGVuc2lvbnMvY3NldGVzdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "540" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e88ce69-5902-43f2-bd0b-51da35baf67c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "f9aec008-d6e1-40b0-8ff4-b92dcae812fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102508Z:f9aec008-d6e1-40b0-8ff4-b92dcae812fd" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest?$expand=instanceView&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwL2V4dGVuc2lvbnMvY3NldGVzdD8kZXhwYW5kPWluc3RhbmNlVmlldyZhcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Succesfully updated build-in Admin account and enabled Remote Desktop connection to the machine\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "987" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7103cd3e-61bf-4895-9d49-bd8a2c1ab74f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "f8fa703d-bf24-4d8e-a147-9f0d53607914" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102508Z:f8fa703d-bf24-4d8e-a147-9f0d53607914" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690\",\r\n \"name\": \"vmpstestrg3690\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2586" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc4adc0c-69bf-477a-b98d-e1b0056c5421" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-correlation-request-id": [ + "ceb94305-3010-41ac-8525-0572a251ebf6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102509Z:ceb94305-3010-41ac-8525-0572a251ebf6" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a716a498-fb1b-4437-ae87-47c74106a146" + ], + "x-ms-correlation-request-id": [ + "a716a498-fb1b-4437-ae87-47c74106a146" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102512Z:a716a498-fb1b-4437-ae87-47c74106a146" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "cba0d7c2-5c94-4e2e-985a-ab933d3565af" + ], + "x-ms-correlation-request-id": [ + "cba0d7c2-5c94-4e2e-985a-ab933d3565af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102513Z:cba0d7c2-5c94-4e2e-985a-ab933d3565af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-request-id": [ + "c342f210-080c-4bf3-9d7f-25dbe30bb85e" + ], + "x-ms-correlation-request-id": [ + "c342f210-080c-4bf3-9d7f-25dbe30bb85e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102528Z:c342f210-080c-4bf3-9d7f-25dbe30bb85e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-request-id": [ + "6f81cf29-e0c0-49a1-88c3-81283b1d221c" + ], + "x-ms-correlation-request-id": [ + "6f81cf29-e0c0-49a1-88c3-81283b1d221c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102544Z:6f81cf29-e0c0-49a1-88c3-81283b1d221c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-request-id": [ + "e130db13-3585-4f23-93a3-e77a85e4bb19" + ], + "x-ms-correlation-request-id": [ + "e130db13-3585-4f23-93a3-e77a85e4bb19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102559Z:e130db13-3585-4f23-93a3-e77a85e4bb19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "038dabc1-ea6a-4444-b167-62264882bc42" + ], + "x-ms-correlation-request-id": [ + "038dabc1-ea6a-4444-b167-62264882bc42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102614Z:038dabc1-ea6a-4444-b167-62264882bc42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:26:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "ed897e4c-33c6-48ca-a747-5ddbd2ae7ed1" + ], + "x-ms-correlation-request-id": [ + "ed897e4c-33c6-48ca-a747-5ddbd2ae7ed1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102630Z:ed897e4c-33c6-48ca-a747-5ddbd2ae7ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:26:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-request-id": [ + "c5062928-e998-467d-a02c-0f15649c79be" + ], + "x-ms-correlation-request-id": [ + "c5062928-e998-467d-a02c-0f15649c79be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102645Z:c5062928-e998-467d-a02c-0f15649c79be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:26:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-request-id": [ + "2e9d1c81-0681-4ac3-87d8-2d1e0a26e75f" + ], + "x-ms-correlation-request-id": [ + "2e9d1c81-0681-4ac3-87d8-2d1e0a26e75f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102700Z:2e9d1c81-0681-4ac3-87d8-2d1e0a26e75f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-request-id": [ + "c76c387c-a65d-46ce-a5fa-3e8b8de56ff6" + ], + "x-ms-correlation-request-id": [ + "c76c387c-a65d-46ce-a5fa-3e8b8de56ff6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102716Z:c76c387c-a65d-46ce-a5fa-3e8b8de56ff6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-request-id": [ + "50b18876-068a-4a26-9f77-ce3467acd2b1" + ], + "x-ms-correlation-request-id": [ + "50b18876-068a-4a26-9f77-ce3467acd2b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102731Z:50b18876-068a-4a26-9f77-ce3467acd2b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-request-id": [ + "0e5915f9-6534-4ad4-b6b2-d243b3ce3d34" + ], + "x-ms-correlation-request-id": [ + "0e5915f9-6534-4ad4-b6b2-d243b3ce3d34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102746Z:0e5915f9-6534-4ad4-b6b2-d243b3ce3d34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-request-id": [ + "043e4700-ad40-47c7-a517-3e06153c7502" + ], + "x-ms-correlation-request-id": [ + "043e4700-ad40-47c7-a517-3e06153c7502" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102802Z:043e4700-ad40-47c7-a517-3e06153c7502" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-request-id": [ + "f02164ae-a272-4f53-90a2-84e1786b990f" + ], + "x-ms-correlation-request-id": [ + "f02164ae-a272-4f53-90a2-84e1786b990f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102817Z:f02164ae-a272-4f53-90a2-84e1786b990f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-request-id": [ + "13bba71e-bd36-4b11-8cf1-17c90d3d1680" + ], + "x-ms-correlation-request-id": [ + "13bba71e-bd36-4b11-8cf1-17c90d3d1680" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102833Z:13bba71e-bd36-4b11-8cf1-17c90d3d1680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-request-id": [ + "6348347d-a019-484c-b042-d1530c6ba3b1" + ], + "x-ms-correlation-request-id": [ + "6348347d-a019-484c-b042-d1530c6ba3b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102848Z:6348347d-a019-484c-b042-d1530c6ba3b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-request-id": [ + "fb6e793c-0ac7-4411-8acf-59bb10cc8956" + ], + "x-ms-correlation-request-id": [ + "fb6e793c-0ac7-4411-8acf-59bb10cc8956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102903Z:fb6e793c-0ac7-4411-8acf-59bb10cc8956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-request-id": [ + "6fb55b57-568e-44ee-8748-2054e4380cf4" + ], + "x-ms-correlation-request-id": [ + "6fb55b57-568e-44ee-8748-2054e4380cf4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102919Z:6fb55b57-568e-44ee-8748-2054e4380cf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-request-id": [ + "da381a9b-7b68-4cd9-8f92-5fd56ca5236a" + ], + "x-ms-correlation-request-id": [ + "da381a9b-7b68-4cd9-8f92-5fd56ca5236a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102934Z:da381a9b-7b68-4cd9-8f92-5fd56ca5236a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-request-id": [ + "2020e48e-a2dc-4226-8709-65b4c2deea1d" + ], + "x-ms-correlation-request-id": [ + "2020e48e-a2dc-4226-8709-65b4c2deea1d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102949Z:2020e48e-a2dc-4226-8709-65b4c2deea1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-request-id": [ + "548eff9e-f1d9-41aa-bb06-c7fea40c77de" + ], + "x-ms-correlation-request-id": [ + "548eff9e-f1d9-41aa-bb06-c7fea40c77de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103005Z:548eff9e-f1d9-41aa-bb06-c7fea40c77de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-request-id": [ + "bc193457-7282-4ec2-8c81-7ff811b8a552" + ], + "x-ms-correlation-request-id": [ + "bc193457-7282-4ec2-8c81-7ff811b8a552" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103020Z:bc193457-7282-4ec2-8c81-7ff811b8a552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-request-id": [ + "484792ce-dc10-4252-9709-70d88075d7a2" + ], + "x-ms-correlation-request-id": [ + "484792ce-dc10-4252-9709-70d88075d7a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103035Z:484792ce-dc10-4252-9709-70d88075d7a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-request-id": [ + "35e4a6f2-0250-4f2d-9b34-53f899fb613c" + ], + "x-ms-correlation-request-id": [ + "35e4a6f2-0250-4f2d-9b34-53f899fb613c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103051Z:35e4a6f2-0250-4f2d-9b34-53f899fb613c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-request-id": [ + "253c0642-bf03-44a6-a583-2d18c6de25cb" + ], + "x-ms-correlation-request-id": [ + "253c0642-bf03-44a6-a583-2d18c6de25cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103106Z:253c0642-bf03-44a6-a583-2d18c6de25cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-request-id": [ + "164009ee-fc5f-4d89-aebc-656db1c09975" + ], + "x-ms-correlation-request-id": [ + "164009ee-fc5f-4d89-aebc-656db1c09975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103122Z:164009ee-fc5f-4d89-aebc-656db1c09975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-request-id": [ + "0211d29d-78a1-44cd-9090-a9bee6155cb6" + ], + "x-ms-correlation-request-id": [ + "0211d29d-78a1-44cd-9090-a9bee6155cb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103137Z:0211d29d-78a1-44cd-9090-a9bee6155cb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-request-id": [ + "6ce6fb0d-b7f0-4ed8-a8fb-0f6deba87cea" + ], + "x-ms-correlation-request-id": [ + "6ce6fb0d-b7f0-4ed8-a8fb-0f6deba87cea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103152Z:6ce6fb0d-b7f0-4ed8-a8fb-0f6deba87cea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-request-id": [ + "d9def07b-c862-423b-8c5e-33cbd37bda44" + ], + "x-ms-correlation-request-id": [ + "d9def07b-c862-423b-8c5e-33cbd37bda44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103208Z:d9def07b-c862-423b-8c5e-33cbd37bda44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "5a5f4320-7221-4e75-a90e-4ba21defc845" + ], + "x-ms-correlation-request-id": [ + "5a5f4320-7221-4e75-a90e-4ba21defc845" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103223Z:5a5f4320-7221-4e75-a90e-4ba21defc845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "5872a39a-d435-41c3-962c-782881c7385c" + ], + "x-ms-correlation-request-id": [ + "5872a39a-d435-41c3-962c-782881c7385c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103238Z:5872a39a-d435-41c3-962c-782881c7385c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "4f632e4f-593f-400a-900d-063964f28527" + ], + "x-ms-correlation-request-id": [ + "4f632e4f-593f-400a-900d-063964f28527" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103254Z:4f632e4f-593f-400a-900d-063964f28527" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "eb577859-fc1f-49d4-ad82-74c7b286af1f" + ], + "x-ms-correlation-request-id": [ + "eb577859-fc1f-49d4-ad82-74c7b286af1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103309Z:eb577859-fc1f-49d4-ad82-74c7b286af1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "693d9ba1-83a8-466a-9979-ecf972a569a4" + ], + "x-ms-correlation-request-id": [ + "693d9ba1-83a8-466a-9979-ecf972a569a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103325Z:693d9ba1-83a8-466a-9979-ecf972a569a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "d5881f9d-7fbd-43ab-a98f-325453e1cba6" + ], + "x-ms-correlation-request-id": [ + "d5881f9d-7fbd-43ab-a98f-325453e1cba6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103340Z:d5881f9d-7fbd-43ab-a98f-325453e1cba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-request-id": [ + "281c2ef0-f7aa-4c8d-8ec3-d4038033a1a3" + ], + "x-ms-correlation-request-id": [ + "281c2ef0-f7aa-4c8d-8ec3-d4038033a1a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103355Z:281c2ef0-f7aa-4c8d-8ec3-d4038033a1a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:54 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineAccessExtension": [ + "pstestrg3690" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json new file mode 100644 index 000000000000..6d0dc30ca63c --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json @@ -0,0 +1,6203 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-request-id": [ + "2a30a50a-04ea-42ef-baff-7c60f0c2ee1b" + ], + "x-ms-correlation-request-id": [ + "2a30a50a-04ea-42ef-baff-7c60f0c2ee1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174842Z:2a30a50a-04ea-42ef-baff-7c60f0c2ee1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "06998e2e-d780-4651-a8b1-37017f12ef14" + ], + "x-ms-correlation-request-id": [ + "06998e2e-d780-4651-a8b1-37017f12ef14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181430Z:06998e2e-d780-4651-a8b1-37017f12ef14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:30 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672\",\r\n \"name\": \"pstestrg672\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7af4eab5-4b7d-48f0-9f08-010f265717d2" + ], + "x-ms-correlation-request-id": [ + "7af4eab5-4b7d-48f0-9f08-010f265717d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174845Z:7af4eab5-4b7d-48f0-9f08-010f265717d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "5fbe16bd-0f04-4e34-b823-065f388a5e84" + ], + "x-ms-correlation-request-id": [ + "5fbe16bd-0f04-4e34-b823-065f388a5e84" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174845Z:5fbe16bd-0f04-4e34-b823-065f388a5e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e31d2cad-9a6a-4262-b61e-23170a84de34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "976ad34a-7a52-4d6d-894e-fcfdd8eb7607" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174847Z:976ad34a-7a52-4d6d-894e-fcfdd8eb7607" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6ff814c3-3bed-468c-abd8-2b06811eb8b2" + ], + "x-ms-correlation-request-id": [ + "6ff814c3-3bed-468c-abd8-2b06811eb8b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174902Z:6ff814c3-3bed-468c-abd8-2b06811eb8b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f3184b9-8bc4-4edb-b0a8-f444f583a786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1caf1941-f028-4ee8-89a6-423999bbc65d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "5e86ea8b-17f1-4222-9b75-698382c56c66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174910Z:5e86ea8b-17f1-4222-9b75-698382c56c66" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e70a3c7-50c8-4851-95c3-036e91b16256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1caf1941-f028-4ee8-89a6-423999bbc65d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "a0c381ea-ab63-401c-a615-87ac64fe61fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174910Z:a0c381ea-ab63-401c-a615-87ac64fe61fa" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg672\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg672\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "501" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672\",\r\n \"etag\": \"W/\\\"f4615e54-33a6-48f6-af88-83dd65374b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\",\r\n \"etag\": \"W/\\\"f4615e54-33a6-48f6-af88-83dd65374b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c864505d-1796-453c-9d29-17f5c68b8f97" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/c864505d-1796-453c-9d29-17f5c68b8f97?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8bd181ac-90fa-4b22-ad04-1b5d317eee94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174909Z:8bd181ac-90fa-4b22-ad04-1b5d317eee94" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/c864505d-1796-453c-9d29-17f5c68b8f97?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jODY0NTA1ZC0xNzk2LTQ1M2MtOWQyOS0xN2Y1YzY4YjhmOTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0be7485-5bb1-4423-b15e-6aa7a7818e28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "d9127f69-eed2-41ba-8f1a-acf598a9f818" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174910Z:d9127f69-eed2-41ba-8f1a-acf598a9f818" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fd826a3e-4405-49ad-81ae-050c3295eaee" + ], + "x-ms-correlation-request-id": [ + "fd826a3e-4405-49ad-81ae-050c3295eaee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174911Z:fd826a3e-4405-49ad-81ae-050c3295eaee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\",\r\n \"etag\": \"W/\\\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\",\r\n \"fqdn\": \"pubippstestrg672.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "551" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9dc60422-4ed5-452a-bb7e-7270323b1b41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "738a65ef-12c0-4bb8-aeda-0a908a0885ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174918Z:738a65ef-12c0-4bb8-aeda-0a908a0885ca" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\",\r\n \"etag\": \"W/\\\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\",\r\n \"fqdn\": \"pubippstestrg672.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "551" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e029bc3-33c5-4b84-9d95-eaeceafa129b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "f668d234-92cd-41ea-b74a-adffcae22a99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174918Z:f668d234-92cd-41ea-b74a-adffcae22a99" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg672\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "255" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\",\r\n \"etag\": \"W/\\\"49e255d4-697e-4ed6-9edf-a2e1a0adb78a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\",\r\n \"fqdn\": \"pubippstestrg672.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "550" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5c66a6a8-61b8-4308-aac6-62fe70bccb8f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/5c66a6a8-61b8-4308-aac6-62fe70bccb8f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "8840b783-27f1-4192-8e43-50772df71bff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174917Z:8840b783-27f1-4192-8e43-50772df71bff" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/5c66a6a8-61b8-4308-aac6-62fe70bccb8f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81YzY2YTZhOC02MWI4LTQzMDgtYWFjNi02MmZlNzBiY2NiOGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bfac120a-2269-41da-899d-1eace54d84e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "b941c852-cf7b-40f0-ab49-7b022aaaf1bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174917Z:b941c852-cf7b-40f0-ab49-7b022aaaf1bd" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3b68a91f-738e-4be6-970a-7a1b883989b7" + ], + "x-ms-correlation-request-id": [ + "3b68a91f-738e-4be6-970a-7a1b883989b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174918Z:3b68a91f-738e-4be6-970a-7a1b883989b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acb19f97-5896-4959-af24-4d68d4336e90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bf93a2a6-b665-4acd-8e83-b645522d0321\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "823ec0e8-8175-46ca-9ce0-2de75ca0a0c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174924Z:823ec0e8-8175-46ca-9ce0-2de75ca0a0c6" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c16edcfb-cd4f-4eae-96d4-7cdd8b982e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bf93a2a6-b665-4acd-8e83-b645522d0321\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "8fad07c6-c8fc-4c51-aca3-68cf471a7539" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174925Z:8fad07c6-c8fc-4c51-aca3-68cf471a7539" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg672\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "854" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "85266675-c7ac-4261-b796-15308e0b30d9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/85266675-c7ac-4261-b796-15308e0b30d9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "274f3ce3-1449-4cff-b0e6-78ced2d7d414" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174923Z:274f3ce3-1449-4cff-b0e6-78ced2d7d414" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/85266675-c7ac-4261-b796-15308e0b30d9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84NTI2NjY3NS1jN2FjLTQyNjEtYjc5Ni0xNTMwOGUwYjMwZDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ad83bbe-7827-4645-9e9c-24200715c8dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "f8467f34-32c5-4610-9ce0-8219f13e67ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174924Z:f8467f34-32c5-4610-9ce0-8219f13e67ef" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "e69116a2-b911-4036-bc3e-00a9057a959f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "b79060c5-fdf1-44e5-9e10-b141a9c75ee4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6ab14655-51fb-4e67-8a83-3ca374fa7769" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174920Z:6ab14655-51fb-4e67-8a83-3ca374fa7769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3OTA2MGM1LWZkZjEtNDRlNS05ZTEwLWIxNDFhOWM3NWVlND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d40c0b87-ddcb-4924-833d-d5af53d7162f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "122c3841-1fd9-4781-a52f-d475caadca23" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "df065780-34be-4523-9f3b-f9837d631605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174920Z:df065780-34be-4523-9f3b-f9837d631605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3OTA2MGM1LWZkZjEtNDRlNS05ZTEwLWIxNDFhOWM3NWVlND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dddedc3-24a3-4ef9-9a79-1e82478b8fd2" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f5061268-995a-4763-ba8d-641a0bb308ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "527d02e5-5798-4592-abdb-dfbaed1fa353" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174945Z:527d02e5-5798-4592-abdb-dfbaed1fa353" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bbc1cfc-1b88-4a87-8dcc-a2b287d8407c" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672\",\r\n \"name\": \"stopstestrg672\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg672.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg672.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg672.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T17:49:16.8292833Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e60b03dd-1d1d-45ff-ba2d-6fb68b719d35" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "3953fd3a-9923-477b-85a1-6325aa834ba1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174946Z:3953fd3a-9923-477b-85a1-6325aa834ba1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fae8e28b-9ecf-4832-a866-b690f29af54b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672\",\r\n \"name\": \"stopstestrg672\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg672.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg672.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg672.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T17:49:16.8292833Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e68afeac-d9fe-4569-bf51-5667780623e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "89c81b0a-9580-4d73-b3d4-faf6eccc0efa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174946Z:89c81b0a-9580-4d73-b3d4-faf6eccc0efa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73be9f29-c000-439b-b9a1-a8c70cde46b5" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"q2PtMD6MPdqsoJLllbr+gagraH8ykh4Q/RZGhotlabsQ1Ju+MgOLTg8k+iUJ0OP4jZM8ba6yBNk+RfzTdze+wg==\",\r\n \"key2\": \"K1vTzzLKix5gBm710X4CKcx2NsvhUvUeB4Pv8mWhC5jSayp+2oBZ813MQ/bs9Vv5r+7TwHDVH3GoBsw0NMEfYA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0afebd97-47a1-48a4-b81e-fabdf849473e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "dd974c73-d90a-4775-a893-9d5b06b53075" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174946Z:dd974c73-d90a-4775-a893-9d5b06b53075" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg672\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg672\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1739" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672\",\r\n \"name\": \"vmpstestrg672\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "82e7f6e8-c4d9-4318-b66c-a8231a41f010" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174957Z:82e7f6e8-c4d9-4318-b66c-a8231a41f010" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b5cea72-0580-470b-88f0-f85f1e8dbb9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "aaf329d6-8fd8-4b77-9bab-51cd6fdbbf2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174958Z:aaf329d6-8fd8-4b77-9bab-51cd6fdbbf2e" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45b69a21-079c-407b-ad44-2a1da077c0b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "d0d94295-cecb-454c-8c40-ae223c7f5d02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175029Z:d0d94295-cecb-454c-8c40-ae223c7f5d02" + ], + "Date": [ + "Wed, 22 Apr 2015 17:50:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d87366eb-0e69-45fc-b1e5-48a7fc9c35c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "de7264dd-7c54-4fab-9d50-d5509a6b08e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175100Z:de7264dd-7c54-4fab-9d50-d5509a6b08e3" + ], + "Date": [ + "Wed, 22 Apr 2015 17:50:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e3fc423-61e9-47a9-9c10-ce5243104a77" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "2b83bcd1-ad97-4a27-9f24-0a76ab189be1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175131Z:2b83bcd1-ad97-4a27-9f24-0a76ab189be1" + ], + "Date": [ + "Wed, 22 Apr 2015 17:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2d4d3b1-aa3c-4ec5-9641-e42c2e3f52a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "a9354fdc-1454-4374-9fac-746c7e05c8d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175202Z:a9354fdc-1454-4374-9fac-746c7e05c8d4" + ], + "Date": [ + "Wed, 22 Apr 2015 17:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ba8b766-5788-4053-bc00-b111d6301d6c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "04136a86-2c70-49eb-be8f-461fb4512268" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175233Z:04136a86-2c70-49eb-be8f-461fb4512268" + ], + "Date": [ + "Wed, 22 Apr 2015 17:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c28c6db4-1b00-4f21-ba60-3e1a6f073d93" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "ae211332-e003-4b9b-b8cb-745bc029eca5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175304Z:ae211332-e003-4b9b-b8cb-745bc029eca5" + ], + "Date": [ + "Wed, 22 Apr 2015 17:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "975aec59-d4f7-4da5-a3db-a29f27eabde4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "33909fe4-41c2-4727-9148-aee4c8e42ab4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175335Z:33909fe4-41c2-4727-9148-aee4c8e42ab4" + ], + "Date": [ + "Wed, 22 Apr 2015 17:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4612b609-275f-4383-85c4-fe9c8d89ae8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "e20ca1e0-02f4-44f3-ad82-08102949ad82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175406Z:e20ca1e0-02f4-44f3-ad82-08102949ad82" + ], + "Date": [ + "Wed, 22 Apr 2015 17:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d671fff8-911b-428a-a0ce-b6dd4bc35f5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "6b0d97f1-0770-46af-9578-155468fb04f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175437Z:6b0d97f1-0770-46af-9578-155468fb04f6" + ], + "Date": [ + "Wed, 22 Apr 2015 17:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f59525e8-979b-4a65-b3ff-c74bbd4ea2b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "c9ecdcee-f75c-4cdb-84b5-f5663d2db3fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175508Z:c9ecdcee-f75c-4cdb-84b5-f5663d2db3fb" + ], + "Date": [ + "Wed, 22 Apr 2015 17:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b41550c-1bb3-45ed-a7d9-ce30023bae78" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "edede42b-d48e-4079-bd9f-30a134d02480" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175539Z:edede42b-d48e-4079-bd9f-30a134d02480" + ], + "Date": [ + "Wed, 22 Apr 2015 17:55:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14c2c0fe-b4cc-4bd7-890e-31a7e0e09c5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "aaffbbd2-ac42-4d48-b7b1-510a9f3ebb3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175610Z:aaffbbd2-ac42-4d48-b7b1-510a9f3ebb3e" + ], + "Date": [ + "Wed, 22 Apr 2015 17:56:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cfde5dc-2af6-475c-8b08-f910394026d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "42e5d651-8fbb-4d5c-841c-2a5461244ec9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175641Z:42e5d651-8fbb-4d5c-841c-2a5461244ec9" + ], + "Date": [ + "Wed, 22 Apr 2015 17:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a121e41-f42b-47ea-b29d-efc6343e3faa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "cc06b545-d71f-4c87-b0be-e6e100d1a2d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175712Z:cc06b545-d71f-4c87-b0be-e6e100d1a2d6" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\",\r\n \"endTime\": \"2015-04-22T10:57:32.9812303-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a0e9991-eda6-4dd7-95e9-4e79532ce96d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "32ba7e71-c654-4163-b099-c585c6cc50ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175743Z:32ba7e71-c654-4163-b099-c585c6cc50ab" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mi9leHRlbnNpb25zL2NzZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stopstestrg672\",\r\n \"storageAccountKey\": \"q2PtMD6MPdqsoJLllbr+gagraH8ykh4Q/RZGhotlabsQ1Ju+MgOLTg8k+iUJ0OP4jZM8ba6yBNk+RfzTdze+wg==\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "816" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8d17ade-b4e0-4726-a2e5-3d73b1ee8808" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5410759e-a07e-4fcd-ac56-ddc220d43ac9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175755Z:5410759e-a07e-4fcd-ac56-ddc220d43ac9" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:54 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d9e27bc-0894-4dd7-8066-b8400125ed21" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "7e32f9c2-4b8a-450e-bcbb-eaffa342b252" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175756Z:7e32f9c2-4b8a-450e-bcbb-eaffa342b252" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a19d0d9-b927-4865-9b74-27cc774b36f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "6973d2c6-f222-408b-92d2-910c121f41b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175827Z:6973d2c6-f222-408b-92d2-910c121f41b3" + ], + "Date": [ + "Wed, 22 Apr 2015 17:58:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4461c82e-1162-416d-ab65-1b839c8e25d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "52496619-cdec-4cc1-90bb-657b679ae048" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175858Z:52496619-cdec-4cc1-90bb-657b679ae048" + ], + "Date": [ + "Wed, 22 Apr 2015 17:58:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bde17e83-6103-4174-a2eb-16c18f954b6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "491b0a48-b4bb-4764-8b19-6faa03360f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175929Z:491b0a48-b4bb-4764-8b19-6faa03360f5f" + ], + "Date": [ + "Wed, 22 Apr 2015 17:59:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f32cc749-7ba4-488e-921c-2e43186ea70f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "0d2e71c2-f875-468b-b1b9-e5a714ed555d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180000Z:0d2e71c2-f875-468b-b1b9-e5a714ed555d" + ], + "Date": [ + "Wed, 22 Apr 2015 17:59:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd1349d1-d4a5-4cba-845c-48b2fc789b68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "277ebe90-556a-442b-a9a1-b46feb8a16a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180031Z:277ebe90-556a-442b-a9a1-b46feb8a16a7" + ], + "Date": [ + "Wed, 22 Apr 2015 18:00:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5104460a-24ec-4efc-a03c-56dbee6a67b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "8107e7aa-d9f5-43df-b8b7-de0424048182" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180102Z:8107e7aa-d9f5-43df-b8b7-de0424048182" + ], + "Date": [ + "Wed, 22 Apr 2015 18:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8d6ae20-39e7-45fc-acd5-a5a918c9a99b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "bd77ec38-29f6-4acb-8638-a35a35ffc0ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180133Z:bd77ec38-29f6-4acb-8638-a35a35ffc0ff" + ], + "Date": [ + "Wed, 22 Apr 2015 18:01:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c22991e8-fff0-4fa1-82ec-e7313fa39fd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "8576cb4c-7e63-4325-9816-4878ac3772c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180204Z:8576cb4c-7e63-4325-9816-4878ac3772c9" + ], + "Date": [ + "Wed, 22 Apr 2015 18:02:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0b9e2649-bf24-453f-bdfd-11e6e69afc07" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "f0022ff7-9066-4d94-9e18-5389f35c7382" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180235Z:f0022ff7-9066-4d94-9e18-5389f35c7382" + ], + "Date": [ + "Wed, 22 Apr 2015 18:02:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e1a955b2-781d-4ec8-81d7-d9c6eaacead4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "acf3361d-0563-4b4f-9ee7-60297deadc91" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180306Z:acf3361d-0563-4b4f-9ee7-60297deadc91" + ], + "Date": [ + "Wed, 22 Apr 2015 18:03:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00e8f77d-f68e-498d-a483-b138aed07eca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "7bcd42ea-836d-4e15-b0c6-1c4b4008b4e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180337Z:7bcd42ea-836d-4e15-b0c6-1c4b4008b4e4" + ], + "Date": [ + "Wed, 22 Apr 2015 18:03:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d335991-e6e3-4dec-9f83-dcefe90b0331" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "975b0ac6-e4d9-4d48-aefc-6e21b8f07da3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180407Z:975b0ac6-e4d9-4d48-aefc-6e21b8f07da3" + ], + "Date": [ + "Wed, 22 Apr 2015 18:04:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "996d5006-8c4c-4e73-b275-690084c56037" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "3bd16e7a-3a1d-4804-86d7-f1f9a0cac219" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180438Z:3bd16e7a-3a1d-4804-86d7-f1f9a0cac219" + ], + "Date": [ + "Wed, 22 Apr 2015 18:04:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aab61a17-128f-47f2-96a9-8dd4ed2a36c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "df99c922-e4b8-46e4-9c37-b7657a13463d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180509Z:df99c922-e4b8-46e4-9c37-b7657a13463d" + ], + "Date": [ + "Wed, 22 Apr 2015 18:05:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d67ff88-1d93-4205-bf4f-8c74f25c077b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "bfbe090d-e525-4fb6-9f46-70ae85c090fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180541Z:bfbe090d-e525-4fb6-9f46-70ae85c090fa" + ], + "Date": [ + "Wed, 22 Apr 2015 18:05:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5a15654-a1fa-4743-86cc-2f47a23dcaef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "bfbc0c3d-a922-4b48-952c-0c4ab5e77138" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180612Z:bfbc0c3d-a922-4b48-952c-0c4ab5e77138" + ], + "Date": [ + "Wed, 22 Apr 2015 18:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "610c0be3-7569-400f-9f76-9feda285a543" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-correlation-request-id": [ + "08fb495f-4aa9-4c75-a3bb-0cf71288b3c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180642Z:08fb495f-4aa9-4c75-a3bb-0cf71288b3c4" + ], + "Date": [ + "Wed, 22 Apr 2015 18:06:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46fc3092-043d-4372-8087-c6fa4ba95533" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "5795bbec-7a95-4eb9-b78f-8184144a88dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180713Z:5795bbec-7a95-4eb9-b78f-8184144a88dc" + ], + "Date": [ + "Wed, 22 Apr 2015 18:07:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb80b6c4-0088-436f-ab7d-cf1cbcfab921" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "f60d9854-7669-4470-bab7-aa3c4331e894" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180744Z:f60d9854-7669-4470-bab7-aa3c4331e894" + ], + "Date": [ + "Wed, 22 Apr 2015 18:07:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "260b4db1-5ce4-4878-b9b5-43481fa39d2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "df567a27-0fbe-4b6d-b71c-76035392ce0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180815Z:df567a27-0fbe-4b6d-b71c-76035392ce0c" + ], + "Date": [ + "Wed, 22 Apr 2015 18:08:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6ab5ea2-9ca7-4c92-9e01-221995def684" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "74e7eed2-8da4-4fd1-b4cc-94bdd68debf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180847Z:74e7eed2-8da4-4fd1-b4cc-94bdd68debf7" + ], + "Date": [ + "Wed, 22 Apr 2015 18:08:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bcc1de75-68e7-4667-b2ed-4ff9539f1a82" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "00f294ea-2f23-4178-9adb-e7ec28037891" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180918Z:00f294ea-2f23-4178-9adb-e7ec28037891" + ], + "Date": [ + "Wed, 22 Apr 2015 18:09:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e87211c4-53d6-4acc-8e07-7c909d68154b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "6300b1a1-49be-427e-8cf4-80e13b20c3f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180949Z:6300b1a1-49be-427e-8cf4-80e13b20c3f0" + ], + "Date": [ + "Wed, 22 Apr 2015 18:09:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f167c21a-2a02-4452-9b53-ce1a6109352c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-correlation-request-id": [ + "2169fad3-eb16-453e-9b20-b3dc529133fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181019Z:2169fad3-eb16-453e-9b20-b3dc529133fb" + ], + "Date": [ + "Wed, 22 Apr 2015 18:10:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "517a87b9-f9ed-48a6-9eb5-49d442b100e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31958" + ], + "x-ms-correlation-request-id": [ + "4fe45f18-7038-4f31-b787-d3e5747cd806" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181050Z:4fe45f18-7038-4f31-b787-d3e5747cd806" + ], + "Date": [ + "Wed, 22 Apr 2015 18:10:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be7cf188-6e10-4c89-9333-d7eb2362bb48" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31957" + ], + "x-ms-correlation-request-id": [ + "25f3d694-1422-4050-8da0-1afccb4d76c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181121Z:25f3d694-1422-4050-8da0-1afccb4d76c4" + ], + "Date": [ + "Wed, 22 Apr 2015 18:11:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "867d027f-c693-4f25-ad64-f6d2628fd8b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31956" + ], + "x-ms-correlation-request-id": [ + "b22d9ef4-babf-49cf-a73f-cb9d4efbfa86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181152Z:b22d9ef4-babf-49cf-a73f-cb9d4efbfa86" + ], + "Date": [ + "Wed, 22 Apr 2015 18:11:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08227186-f162-4d00-9417-bae6de3e2406" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31955" + ], + "x-ms-correlation-request-id": [ + "3df1ec97-2b4d-475e-9809-5f04f212949d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181223Z:3df1ec97-2b4d-475e-9809-5f04f212949d" + ], + "Date": [ + "Wed, 22 Apr 2015 18:12:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5299b597-fb68-4115-be3c-56e485266152" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31954" + ], + "x-ms-correlation-request-id": [ + "cbee11cb-a7a5-4890-b4f7-d1cc6704ea88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181254Z:cbee11cb-a7a5-4890-b4f7-d1cc6704ea88" + ], + "Date": [ + "Wed, 22 Apr 2015 18:12:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9685a4cd-12e9-4f9e-b88b-064645e939e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31953" + ], + "x-ms-correlation-request-id": [ + "1cf0a476-1095-454b-b40e-499c4b2f2fbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181325Z:1cf0a476-1095-454b-b40e-499c4b2f2fbe" + ], + "Date": [ + "Wed, 22 Apr 2015 18:13:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb7c3947-601b-4230-a20f-0e312adfa5da" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31952" + ], + "x-ms-correlation-request-id": [ + "245122ad-e5e2-45a8-96a2-f983a28888cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181356Z:245122ad-e5e2-45a8-96a2-f983a28888cc" + ], + "Date": [ + "Wed, 22 Apr 2015 18:13:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\",\r\n \"endTime\": \"2015-04-22T11:14:19.3127245-07:00\",\r\n \"error\": {\r\n \"code\": \"VMExtensionProvisioningError\",\r\n \"message\": \"VM has reported a failure when processing extension 'csetest'. Error message: \\\"Failed to download all specified files. Exiting...\\\".\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "734a8ed9-1677-4aad-9cec-e4f042b6b47f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31951" + ], + "x-ms-correlation-request-id": [ + "1e63c2d7-5b70-413d-883b-5f152be5ed43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181427Z:1e63c2d7-5b70-413d-883b-5f152be5ed43" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mi9leHRlbnNpb25zL2NzZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d684703c-446b-457d-9d94-61ccd143760c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31950" + ], + "x-ms-correlation-request-id": [ + "5c509409-722d-46f0-9d6a-743f71fee4ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181428Z:5c509409-722d-46f0-9d6a-743f71fee4ae" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest?$expand=instanceView&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mi9leHRlbnNpb25zL2NzZXRlc3Q/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/3\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Failed to download all specified files. Exiting...\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "98f0c194-d03a-4d25-b921-9dc910553077" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31949" + ], + "x-ms-correlation-request-id": [ + "fa17094d-4d78-4120-bb49-ccde9d02e555" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181428Z:fa17094d-4d78-4120-bb49-ccde9d02e555" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672\",\r\n \"name\": \"vmpstestrg672\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2813" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ddc65efd-a6e1-44e1-ac0f-42468e6780fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31948" + ], + "x-ms-correlation-request-id": [ + "3de455b1-d97e-4d32-819d-b92115ef93de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181429Z:3de455b1-d97e-4d32-819d-b92115ef93de" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6e1392e9-9063-4778-a812-8279879a9db7" + ], + "x-ms-correlation-request-id": [ + "6e1392e9-9063-4778-a812-8279879a9db7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181434Z:6e1392e9-9063-4778-a812-8279879a9db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-request-id": [ + "d5680925-6159-4d7d-a700-04be54166edd" + ], + "x-ms-correlation-request-id": [ + "d5680925-6159-4d7d-a700-04be54166edd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181435Z:d5680925-6159-4d7d-a700-04be54166edd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-request-id": [ + "3d31776d-f080-4b0c-9434-db030989a31e" + ], + "x-ms-correlation-request-id": [ + "3d31776d-f080-4b0c-9434-db030989a31e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181450Z:3d31776d-f080-4b0c-9434-db030989a31e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-request-id": [ + "bf16c53a-1a6c-42c0-a3b6-2ed61f031164" + ], + "x-ms-correlation-request-id": [ + "bf16c53a-1a6c-42c0-a3b6-2ed61f031164" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181506Z:bf16c53a-1a6c-42c0-a3b6-2ed61f031164" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "f8dcda6c-2051-49dc-a3e6-c16b38d32252" + ], + "x-ms-correlation-request-id": [ + "f8dcda6c-2051-49dc-a3e6-c16b38d32252" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181521Z:f8dcda6c-2051-49dc-a3e6-c16b38d32252" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "7ae0d7a4-cfd0-4921-890d-10230a3abe67" + ], + "x-ms-correlation-request-id": [ + "7ae0d7a4-cfd0-4921-890d-10230a3abe67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181536Z:7ae0d7a4-cfd0-4921-890d-10230a3abe67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-request-id": [ + "97624f58-e583-44ab-a1d6-9860392dac38" + ], + "x-ms-correlation-request-id": [ + "97624f58-e583-44ab-a1d6-9860392dac38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181552Z:97624f58-e583-44ab-a1d6-9860392dac38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-request-id": [ + "17e84231-a6ec-46ca-982e-c75cb77ebf4b" + ], + "x-ms-correlation-request-id": [ + "17e84231-a6ec-46ca-982e-c75cb77ebf4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181607Z:17e84231-a6ec-46ca-982e-c75cb77ebf4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-request-id": [ + "79e77746-caf9-491d-be20-b440ec7927c3" + ], + "x-ms-correlation-request-id": [ + "79e77746-caf9-491d-be20-b440ec7927c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181622Z:79e77746-caf9-491d-be20-b440ec7927c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-request-id": [ + "b26fd1f7-2098-4e3f-b793-fb936b5f2616" + ], + "x-ms-correlation-request-id": [ + "b26fd1f7-2098-4e3f-b793-fb936b5f2616" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181638Z:b26fd1f7-2098-4e3f-b793-fb936b5f2616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-request-id": [ + "d6661782-9617-4464-97d6-3972a01845c0" + ], + "x-ms-correlation-request-id": [ + "d6661782-9617-4464-97d6-3972a01845c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181653Z:d6661782-9617-4464-97d6-3972a01845c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-request-id": [ + "e0492d0e-0330-4114-a030-ad05b1445f98" + ], + "x-ms-correlation-request-id": [ + "e0492d0e-0330-4114-a030-ad05b1445f98" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181708Z:e0492d0e-0330-4114-a030-ad05b1445f98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-request-id": [ + "faf0c5dd-63ab-437c-884f-36d4f6f43d83" + ], + "x-ms-correlation-request-id": [ + "faf0c5dd-63ab-437c-884f-36d4f6f43d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181724Z:faf0c5dd-63ab-437c-884f-36d4f6f43d83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-request-id": [ + "f52da0e0-8ed6-4ac3-8444-8c10072bb3db" + ], + "x-ms-correlation-request-id": [ + "f52da0e0-8ed6-4ac3-8444-8c10072bb3db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181739Z:f52da0e0-8ed6-4ac3-8444-8c10072bb3db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-request-id": [ + "fcd159c3-314d-4a7c-be83-096a9d6d47da" + ], + "x-ms-correlation-request-id": [ + "fcd159c3-314d-4a7c-be83-096a9d6d47da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181754Z:fcd159c3-314d-4a7c-be83-096a9d6d47da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-request-id": [ + "4adbd61d-3c33-4fd7-808d-d43cfacf9498" + ], + "x-ms-correlation-request-id": [ + "4adbd61d-3c33-4fd7-808d-d43cfacf9498" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181810Z:4adbd61d-3c33-4fd7-808d-d43cfacf9498" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-request-id": [ + "9288b10e-5c8a-4fa4-911c-196af35151a6" + ], + "x-ms-correlation-request-id": [ + "9288b10e-5c8a-4fa4-911c-196af35151a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181825Z:9288b10e-5c8a-4fa4-911c-196af35151a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-request-id": [ + "77d7c0d7-d6fe-46b5-829a-98d81c9ea411" + ], + "x-ms-correlation-request-id": [ + "77d7c0d7-d6fe-46b5-829a-98d81c9ea411" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181841Z:77d7c0d7-d6fe-46b5-829a-98d81c9ea411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-request-id": [ + "a26eafc7-732d-47fe-a596-d3ace4643531" + ], + "x-ms-correlation-request-id": [ + "a26eafc7-732d-47fe-a596-d3ace4643531" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181856Z:a26eafc7-732d-47fe-a596-d3ace4643531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-request-id": [ + "79bcd5c6-56e0-4a00-aedc-cc6d8f035bc2" + ], + "x-ms-correlation-request-id": [ + "79bcd5c6-56e0-4a00-aedc-cc6d8f035bc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181911Z:79bcd5c6-56e0-4a00-aedc-cc6d8f035bc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-request-id": [ + "b61fe5a6-db6f-4565-a9b9-7f770c6dc58c" + ], + "x-ms-correlation-request-id": [ + "b61fe5a6-db6f-4565-a9b9-7f770c6dc58c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181927Z:b61fe5a6-db6f-4565-a9b9-7f770c6dc58c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-request-id": [ + "023e3132-ab61-4867-b023-f447b39e968e" + ], + "x-ms-correlation-request-id": [ + "023e3132-ab61-4867-b023-f447b39e968e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181942Z:023e3132-ab61-4867-b023-f447b39e968e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-request-id": [ + "bd270dd0-003e-45bb-b998-a31628fa7672" + ], + "x-ms-correlation-request-id": [ + "bd270dd0-003e-45bb-b998-a31628fa7672" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181957Z:bd270dd0-003e-45bb-b998-a31628fa7672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-request-id": [ + "7119111d-b3c0-428c-8ca6-d105c4fb4ad9" + ], + "x-ms-correlation-request-id": [ + "7119111d-b3c0-428c-8ca6-d105c4fb4ad9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182013Z:7119111d-b3c0-428c-8ca6-d105c4fb4ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-request-id": [ + "7ed1fe33-7d5a-451d-8ce9-2833d2d8cd62" + ], + "x-ms-correlation-request-id": [ + "7ed1fe33-7d5a-451d-8ce9-2833d2d8cd62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182028Z:7ed1fe33-7d5a-451d-8ce9-2833d2d8cd62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-request-id": [ + "162ff140-356a-4951-b32a-59afc7256b10" + ], + "x-ms-correlation-request-id": [ + "162ff140-356a-4951-b32a-59afc7256b10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182043Z:162ff140-356a-4951-b32a-59afc7256b10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-request-id": [ + "e0eac056-624e-433c-9ec2-137c5a4bb9e3" + ], + "x-ms-correlation-request-id": [ + "e0eac056-624e-433c-9ec2-137c5a4bb9e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182059Z:e0eac056-624e-433c-9ec2-137c5a4bb9e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-request-id": [ + "14246c15-f039-4fa3-b09b-996bd668df89" + ], + "x-ms-correlation-request-id": [ + "14246c15-f039-4fa3-b09b-996bd668df89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182114Z:14246c15-f039-4fa3-b09b-996bd668df89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:21:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "71d7b292-571a-4c41-9d48-b390214aca7c" + ], + "x-ms-correlation-request-id": [ + "71d7b292-571a-4c41-9d48-b390214aca7c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182130Z:71d7b292-571a-4c41-9d48-b390214aca7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:21:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "1dbf0ffb-09dc-46d0-b667-19c57364bc9e" + ], + "x-ms-correlation-request-id": [ + "1dbf0ffb-09dc-46d0-b667-19c57364bc9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182145Z:1dbf0ffb-09dc-46d0-b667-19c57364bc9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:21:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "a4b39aec-20e7-4e64-b517-09f1244d9fb0" + ], + "x-ms-correlation-request-id": [ + "a4b39aec-20e7-4e64-b517-09f1244d9fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182200Z:a4b39aec-20e7-4e64-b517-09f1244d9fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "d854eed8-3ee8-4d7a-a0d2-717bfee0f492" + ], + "x-ms-correlation-request-id": [ + "d854eed8-3ee8-4d7a-a0d2-717bfee0f492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182216Z:d854eed8-3ee8-4d7a-a0d2-717bfee0f492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "c06475b6-f63c-4a98-9340-b6a8843bd8a1" + ], + "x-ms-correlation-request-id": [ + "c06475b6-f63c-4a98-9340-b6a8843bd8a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182231Z:c06475b6-f63c-4a98-9340-b6a8843bd8a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "6d0f430d-9b0d-4526-8e40-45e4dda7db1b" + ], + "x-ms-correlation-request-id": [ + "6d0f430d-9b0d-4526-8e40-45e4dda7db1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182246Z:6d0f430d-9b0d-4526-8e40-45e4dda7db1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-request-id": [ + "1bb6a439-f6f1-459d-b5e7-08c9280c7145" + ], + "x-ms-correlation-request-id": [ + "1bb6a439-f6f1-459d-b5e7-08c9280c7145" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182302Z:1bb6a439-f6f1-459d-b5e7-08c9280c7145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:23:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-request-id": [ + "cb8ad4fb-aa8a-4c37-b9d1-1cccebbd9614" + ], + "x-ms-correlation-request-id": [ + "cb8ad4fb-aa8a-4c37-b9d1-1cccebbd9614" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182317Z:cb8ad4fb-aa8a-4c37-b9d1-1cccebbd9614" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:23:16 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineCustomScriptExtension": [ + "pstestrg672" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file From 3cf6a30b93eeece9253430478e738d070a80dd29 Mon Sep 17 00:00:00 2001 From: unknown <hylee@HYONHO2.redmond.corp.microsoft.com> Date: Wed, 22 Apr 2015 12:01:38 -0700 Subject: [PATCH 7/8] Update according to comments --- .../VirtualMachineProfileTests.ps1 | 13 +++++++------ ...VMAdditionalUnattendContentConfigCommand.cs | 18 +----------------- .../Config/AddAzureVMSecretConfigCommand.cs | 2 +- 3 files changed, 9 insertions(+), 24 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 index dbe28fac9a06..cd58dab17cea 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 @@ -82,13 +82,14 @@ function Test-VirtualMachineProfile $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -CustomData $custom -WinRMHttp -WinRMHttps -WinRMCertUrl $winRMCertUrl -ProvisionVMAgent -EnableAutoUpdate -TimeZone $timeZone; $p = Set-AzureVMSourceImage -VM $p -Name $img; + $subid = (Get-AzureSubscription -Current).SubscriptionId; - $referenceUri = "/subscriptions/" + (Get-AzureSubscription -Current).SubscriptionId + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; + $referenceUri = "/subscriptions/" + $subid + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; $certStore = "My"; $certUrl = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bdd703272"; $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri -CertificateStore $certStore -CertificateUrl $certUrl; - $referenceUri2 = "/subscriptions/" + (Get-AzureSubscription -Current).SubscriptionId + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault456"; + $referenceUri2 = "/subscriptions/" + $subid + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault456"; $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri2 -CertificateStore $certStore -CertificateUrl $certUrl; $certStore2 = "My2"; @@ -96,18 +97,18 @@ function Test-VirtualMachineProfile $p = Add-AzureVMSecretConfig -VM $p -ReferenceUri $referenceUri -CertificateStore $certStore2 -CertificateUrl $certUrl2; $aucSetting = "AutoLogon"; - $aucContent = "<UserAccounts><AdministratorPassword><Value>p@ssw0rd</Value><PlainText>true</PlainText></AdministratorPassword></UserAccounts>"; + $aucContent = "<UserAccounts><AdministratorPassword><Value>" + $password + "</Value><PlainText>true</PlainText></AdministratorPassword></UserAccounts>"; $p = Add-AzureVMAdditionalUnattendContentConfig -VM $p -Content $aucContent -SettingName $aucSetting; $p = Add-AzureVMAdditionalUnattendContentConfig -VM $p -Content $aucContent -SettingName $aucSetting; Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); + Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + $subid + '/services/images/' + $img); Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateStore $certStore; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateUrl $certUrl; - Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; + Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[1].CertificateStore $certStore2; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[1].CertificateUrl $certUrl2; Assert-AreEqual $p.OSProfile.Secrets[1].SourceVault.ReferenceUri $referenceUri2; @@ -151,7 +152,7 @@ function Test-VirtualMachineProfile Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); + Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + $subid + '/services/images/' + $img); Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateStore $certStore; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateUrl $certUrl; diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs index 52afa1db7c21..161375107a22 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentConfigCommand.cs @@ -46,30 +46,14 @@ public class NewAzureAdditionalUnattendContentCommand : AzurePSCmdlet public PSVirtualMachine VM { get; set; } [Parameter( - DontShow = true, // Currently, the only allowable value is 'Microsoft-Windows-Shell-Setup'. Position = 1, ValueFromPipelineByPropertyName = true, - HelpMessage = "Component Name.")] - [ValidateNotNullOrEmpty] - public string ComponentName { get; set; } - - [Parameter( - Position = 2, - ValueFromPipelineByPropertyName = true, HelpMessage = "XML Formatted Content.")] [ValidateNotNullOrEmpty] public string Content { get; set; } [Parameter( - DontShow = true, // Currently, the only allowable value is 'oobeSystem'. - Position = 3, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Pass name")] - [ValidateNotNullOrEmpty] - public string PassName { get; set; } - - [Parameter( - Position = 4, + Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = "Setting Name.")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs index f2063a401700..2cb5093d5357 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretConfigCommand.cs @@ -103,7 +103,7 @@ public override void ExecuteCmdlet() break; } - if (this.VM.OSProfile.Secrets[i].SourceVault != null && this.VM.OSProfile.Secrets[i].SourceVault.ReferenceUri == this.ReferenceUri) + if (this.VM.OSProfile.Secrets[i].SourceVault != null && this.VM.OSProfile.Secrets[i].SourceVault.ReferenceUri.Equals(this.ReferenceUri)) { if (this.VM.OSProfile.Secrets[i].VaultCertificates == null) { From 17b92894773ad1fc7cbd80b318acd0cab2736f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Calder=C3=B3n=5FMeza?= <gucalder@microsoft.com> Date: Wed, 22 Apr 2015 12:14:48 -0700 Subject: [PATCH 8/8] FW: Fixing one more issue in the code (linebreak) --- .../UsageMetrics/GetUsageMetricsCommandTests.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs index b0fad90a49b3..402f1a5824dc 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs @@ -87,7 +87,9 @@ public void GetUsageMetricsCommandParametersProcessing() var endDate = DateTime.Now.AddMinutes(-1); cmdlet.EndTime = endDate; - var startTime = endDate.Subtract(GetUsageMetricsCommand.DefaultTimeRange).ToString("O"); + var startTime = endDate + .Subtract(GetUsageMetricsCommand.DefaultTimeRange) + .ToString("O"); var endTime = endDate.ToString("O"); var expected = "startTime eq " + startTime + " and endTime eq " + endTime; @@ -100,7 +102,9 @@ public void GetUsageMetricsCommandParametersProcessing() Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); this.CleanParamVariables(); - cmdlet.StartTime = endDate.Subtract(GetUsageMetricsCommand.DefaultTimeRange).Subtract(GetUsageMetricsCommand.DefaultTimeRange); + cmdlet.StartTime = endDate + .Subtract(GetUsageMetricsCommand.DefaultTimeRange) + .Subtract(GetUsageMetricsCommand.DefaultTimeRange); startTime = cmdlet.StartTime.ToString("O"); expected = "startTime eq " + startTime + " and endTime eq " + endTime;