diff --git a/src/ResourceManager/Compute/ChangeLog.md b/src/ResourceManager/Compute/ChangeLog.md index 3c84482b5ee1..1790c001f852 100644 --- a/src/ResourceManager/Compute/ChangeLog.md +++ b/src/ResourceManager/Compute/ChangeLog.md @@ -23,6 +23,7 @@ - New Parameters for 'Set-AzureRmVmDiskEncryptionExtension': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension - New Parameters for 'Disable-AzureRmVmDiskEncryption': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension - New Parameters for 'Get-AzureRmVmDiskEncryptionStatus': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension +* Set-AzureRmVMAEMExtension: Add support for Dv3 and Ev3 series ## Version 3.4.1 diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs index 633a4cad6716..2542d676144c 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests @@ -82,5 +83,19 @@ public void TestAEMExtensionAdvancedLinuxMD() { ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedLinuxMD"); } + + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Fact] + public void TestAEMExtensionAdvancedLinuxMD_ESeries() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedLinuxMD_E"); + } + + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Fact] + public void TestAEMExtensionAdvancedLinuxMD_DSeries() + { + ComputeTestController.NewInstance.RunPsTest("Test-AEMExtensionAdvancedLinuxMD_D"); + } } } \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 index 3bc172dbe873..6f9f6057846d 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AEMExtensionTests.ps1 @@ -17,6 +17,11 @@ Test the basic usage of the Set/Get/Test/Remove virtual machine Azure Enhanced Monitoring extension command #> +function Log($test, $message) +{ + Out-File -FilePath "$test.log" -Append -InputObject $message +} + function Test-AEMExtensionBasicWindowsWAD { $rgname = Get-ComputeTestResourceName @@ -612,6 +617,154 @@ function Test-AEMExtensionAdvancedLinux } } +function Test-AEMExtensionAdvancedLinuxMD_E +{ + $rgname = Get-ComputeTestResourceName + $loc = "southeastasia" + + try + { + Write-Output "Start the test Test-AEMExtensionAdvancedLinuxMD" + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_E4s_v3' -stotype 'Premium_LRS' -nicCount 2 -useMD -linux + $vmname = $vm.Name + $vm = Get-AzureRmVM -ResourceGroupName $rgname -Name $vmname + Add-AzureRmVMDataDisk -VM $vm -StorageAccountType PremiumLRS -Lun (($vm.StorageProfile.DataDisks | select -ExpandProperty Lun | Measure-Object -Maximum).Maximum + 1) -CreateOption Empty -DiskSizeInGB 2059 | Update-AzureRmVM + + + Write-Output "Test-AEMExtensionAdvancedLinuxMD: VM created" + + # Get with not extension + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Get with no extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension "Extension is not null" "Extension is not null" + + # Test with not extension + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + $tmp = $res;$out = &{while ($true) { if ($tmp) { foreach ($tmpRes in $tmp) {($tmpRes.TestName + " " + $tmpRes.Result)};$tmp = @($tmp.PartialResults)} else {break}}}; + Assert-False { $res.Result } "Test result is not false $out" + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; + + # Set and Get command. + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Set done" + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' + Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' + Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Get done" + + # Test command. + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + $tmp = $res;$out = &{while ($true) { if ($tmp) { foreach ($tmpRes in $tmp) {($tmpRes.TestName + " " + $tmpRes.Result)};$tmp = @($tmp.PartialResults)} else {break}}}; + Assert-True { $res.Result } "Test result is not false $out" + Assert-True { ($res.PartialResults.Count -gt 0) } + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Test done" + + # Remove command. + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Remove with extension" + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Remove done" + + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Get after remove" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension "Extension is not null" + Write-Output "Test-AEMExtensionAdvancedLinuxMD: Get after remove done" + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-AEMExtensionAdvancedLinuxMD_D +{ + $rgname = Get-ComputeTestResourceName + $loc = "southeastasia" + + try + { + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Start the test Test-AEMExtensionAdvancedLinuxMD" + # Setup + $vm = Create-AdvancedVM -rgname $rgname -loc $loc -vmsize 'Standard_D2s_v3' -stotype 'Premium_LRS' -nicCount 2 -useMD -linux + + Log "Test-AEMExtensionAdvancedLinuxMD_D" "VM created" + $vmname = $vm.Name + $vm = Get-AzureRmVM -ResourceGroupName $rgname -Name $vmname + Add-AzureRmVMDataDisk -VM $vm -StorageAccountType PremiumLRS -Lun (($vm.StorageProfile.DataDisks | select -ExpandProperty Lun | Measure-Object -Maximum).Maximum + 1) -CreateOption Empty -DiskSizeInGB 2059 | Update-AzureRmVM + + + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: VM created" + + # Get with not extension + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Get with no extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension "Extension is not null" "Extension is not null" + + # Test with not extension + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Test with no extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + $tmp = $res;$out = &{while ($true) { if ($tmp) { foreach ($tmpRes in $tmp) {($tmpRes.TestName + " " + $tmpRes.Result)};$tmp = @($tmp.PartialResults)} else {break}}}; + Assert-False { $res.Result } "Test result is not false $out" + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Test done" + + $stoname = 'sto' + $rgname + "2"; + New-AzureRmStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type 'Standard_LRS'; + + # Set and Get command. + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Set with no extension" + Set-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -WADStorageAccountName $stoname -SkipStorage + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Set done" + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Get with extension" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + + + Assert-NotNull $extension + Assert-AreEqual $extension.Publisher 'Microsoft.OSTCExtensions' + Assert-AreEqual $extension.ExtensionType 'AzureEnhancedMonitorForLinux' + Assert-AreEqual $extension.Name 'AzureEnhancedMonitorForLinux' + $settings = $extension.PublicSettings | ConvertFrom-Json + Assert-NotNull $settings.cfg + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Get done" + + # Test command. + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Test with extension" + $res = Test-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname -SkipStorageCheck + $tmp = $res;$out = &{while ($true) { if ($tmp) { foreach ($tmpRes in $tmp) {($tmpRes.TestName + " " + $tmpRes.Result)};$tmp = @($tmp.PartialResults)} else {break}}}; + Assert-True { $res.Result } "Test result is not false $out" + Assert-True { ($res.PartialResults.Count -gt 0) } + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Test done" + + # Remove command. + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Remove with extension" + Remove-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Remove done" + + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Get after remove" + $extension = Get-AzureRmVMAEMExtension -ResourceGroupName $rgname -VMName $vmname + Assert-Null $extension "Extension is not null" + Log "Test-AEMExtensionAdvancedLinuxMD_D" "Test-AEMExtensionAdvancedLinuxMD: Get after remove done" + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + function Create-AdvancedVM($rgname, $vmname, $loc, $vmsize, $stotype, $nicCount, [Switch] $linux, [Switch] $useMD) { # Initialize parameters diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD_DSeries.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD_DSeries.json new file mode 100644 index 000000000000..9ef0ac1fe427 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD_DSeries.json @@ -0,0 +1,105917 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourcegroups/crptestps6837?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837\",\r\n \"name\": \"crptestps6837\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "dcff8e8a-5225-4f1a-aad0-ba8cef0963b1" + ], + "x-ms-correlation-request-id": [ + "dcff8e8a-5225-4f1a-aad0-ba8cef0963b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184924Z:dcff8e8a-5225-4f1a-aad0-ba8cef0963b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6b19895-f2c0-4fc0-92c0-20ecd7e61119" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps6837' under resource group 'crptestps6837' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "da6a11ec-6f31-4e14-ad74-243c089562fa" + ], + "x-ms-correlation-request-id": [ + "da6a11ec-6f31-4e14-ad74-243c089562fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184926Z:da6a11ec-6f31-4e14-ad74-243c089562fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837\",\r\n \"etag\": \"W/\\\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bbe0b814-9319-4730-9de2-a0cba6f2b308\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\",\r\n \"etag\": \"W/\\\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f802732d-b59a-4f15-a9ed-47cb675092df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "4e3a1e42-210b-48e3-97c5-a8516f37b704" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184933Z:4e3a1e42-210b-48e3-97c5-a8516f37b704" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8743a690-3e88-4768-9c2b-ea87658f1345" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837\",\r\n \"etag\": \"W/\\\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bbe0b814-9319-4730-9de2-a0cba6f2b308\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\",\r\n \"etag\": \"W/\\\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9475ea44-1346-4550-9bd6-fc80d002b8a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "4b26c434-7739-4cb1-a274-473f46347cd7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184934Z:4b26c434-7739-4cb1-a274-473f46347cd7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aac05466-3a5b-4eb0-93a3-f2d2dd0c8d88" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837\",\r\n \"etag\": \"W/\\\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bbe0b814-9319-4730-9de2-a0cba6f2b308\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\",\r\n \"etag\": \"W/\\\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "23d19500-eda1-4141-97f6-bd869d97af53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"58d2cf42-46e4-4e93-b29c-ce4d81b70296\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "039e852d-fa98-4c26-86d0-e252fd837de0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184934Z:039e852d-fa98-4c26-86d0-e252fd837de0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"subnetcrptestps6837\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "494" + ], + "x-ms-client-request-id": [ + "8e5b3798-0102-489a-b8bc-d6568e9e8001" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837\",\r\n \"etag\": \"W/\\\"397f9bcd-bf2a-449b-a239-c81263f2dda5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bbe0b814-9319-4730-9de2-a0cba6f2b308\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\",\r\n \"etag\": \"W/\\\"397f9bcd-bf2a-449b-a239-c81263f2dda5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1139" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "63f7a989-56b7-495e-844f-4951034ad437" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/63f7a989-56b7-495e-844f-4951034ad437?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9500acfc-329f-4147-b677-543ea8f0b6e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184932Z:9500acfc-329f-4147-b677-543ea8f0b6e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:32 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/63f7a989-56b7-495e-844f-4951034ad437?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYzZjdhOTg5LTU2YjctNDk1ZS04NDRmLTQ5NTEwMzRhZDQzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.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": [ + "3d0fb9e1-2f35-4297-a93d-74fa16b364a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "765a1373-0aff-455a-909e-0b95e1f190a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184933Z:765a1373-0aff-455a-909e-0b95e1f190a4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a8cfd8f-d561-40e3-99c5-515963d1afec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps6837' under resource group 'crptestps6837' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ec8ef3b0-03bf-4a9e-bc1a-6175608e8172" + ], + "x-ms-correlation-request-id": [ + "ec8ef3b0-03bf-4a9e-bc1a-6175608e8172" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184935Z:ec8ef3b0-03bf-4a9e-bc1a-6175608e8172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:34 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\",\r\n \"etag\": \"W/\\\"bbe78cd3-a418-4b55-8e2a-bb0d05719c3b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51d35d50-ece7-41d4-9e70-19f600f10034\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6837\",\r\n \"fqdn\": \"pubipcrptestps6837.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "63750197-3892-4739-9f12-b32960743cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bbe78cd3-a418-4b55-8e2a-bb0d05719c3b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "3c052e6b-2368-4058-871b-764130d949d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184941Z:3c052e6b-2368-4058-871b-764130d949d9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0c33bca-5540-4c31-80d5-27e4a46c62c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\",\r\n \"etag\": \"W/\\\"bbe78cd3-a418-4b55-8e2a-bb0d05719c3b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51d35d50-ece7-41d4-9e70-19f600f10034\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6837\",\r\n \"fqdn\": \"pubipcrptestps6837.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5ae046f-d9e8-46af-af56-a99fe8ec33e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bbe78cd3-a418-4b55-8e2a-bb0d05719c3b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "ab0faded-7882-4fa9-a9db-c407a8e8806e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184941Z:ab0faded-7882-4fa9-a9db-c407a8e8806e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07c259b1-51b5-43df-bbf7-40afac809511" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\",\r\n \"etag\": \"W/\\\"bbe78cd3-a418-4b55-8e2a-bb0d05719c3b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51d35d50-ece7-41d4-9e70-19f600f10034\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6837\",\r\n \"fqdn\": \"pubipcrptestps6837.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a66c8c99-8ed4-4b22-95c6-a853ea02cf68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bbe78cd3-a418-4b55-8e2a-bb0d05719c3b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "7c31a6ac-5532-4ce4-be5a-dbcecba6ea56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184941Z:7c31a6ac-5532-4ce4-be5a-dbcecba6ea56" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjgzNz9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6837\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "196" + ], + "x-ms-client-request-id": [ + "32887ef2-efe8-4892-af0e-8da85f36d47a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\",\r\n \"etag\": \"W/\\\"15a6af76-ad9e-4b7b-b2e0-682e49a27494\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"51d35d50-ece7-41d4-9e70-19f600f10034\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6837\",\r\n \"fqdn\": \"pubipcrptestps6837.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "757" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0818f510-078f-479a-aece-ad73b039d905" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/0818f510-078f-479a-aece-ad73b039d905?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "2e026994-a7d2-44b3-91ba-0e2e42d639cd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184939Z:2e026994-a7d2-44b3-91ba-0e2e42d639cd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/0818f510-078f-479a-aece-ad73b039d905?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4MThmNTEwLTA3OGYtNDc5YS1hZWNlLWFkNzNiMDM5ZDkwNT9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.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": [ + "59d93787-afeb-4710-b501-440402f005ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "7771b78f-cd61-4286-a6f9-6582f0bb7aab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184940Z:7771b78f-cd61-4286-a6f9-6582f0bb7aab" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1697103-f594-4368-91af-cab6f10ce6ce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps6837' under resource group 'crptestps6837' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ca92353c-6320-4b4e-b5c3-00e91fbe7d00" + ], + "x-ms-correlation-request-id": [ + "ca92353c-6320-4b4e-b5c3-00e91fbe7d00" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184942Z:ca92353c-6320-4b4e-b5c3-00e91fbe7d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"45d8b702-7eb5-4608-8d49-031ff5578376\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b1349543-91a6-46ee-a408-ab88d880a4e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b9c91839-0f0c-4c9b-a502-a1d446b70976\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "cf28f8cc-1c95-4068-a6f4-3eac44716bc1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184945Z:cf28f8cc-1c95-4068-a6f4-3eac44716bc1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e87bec5f-0b56-4d2f-bead-fe1d1e7e5897" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"45d8b702-7eb5-4608-8d49-031ff5578376\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6c54be00-a5f8-4ef7-a4ee-ffc98866fff8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b9c91839-0f0c-4c9b-a502-a1d446b70976\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "319b4e54-d9aa-4337-83de-8532a8daa428" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184945Z:319b4e54-d9aa-4337-83de-8532a8daa428" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dad8226-c74e-459e-bc51-e93e440e11c7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"45d8b702-7eb5-4608-8d49-031ff5578376\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "63d909c1-11e9-41c6-ac24-7e85b7f67094" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b9c91839-0f0c-4c9b-a502-a1d446b70976\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "549f8121-59dc-4049-828b-dbc26ff2dc8b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184946Z:549f8121-59dc-4049-828b-dbc26ff2dc8b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzBjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1107" + ], + "x-ms-client-request-id": [ + "1605f771-e771-40f6-a283-de6fcef2af53" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"45d8b702-7eb5-4608-8d49-031ff5578376\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b9c91839-0f0c-4c9b-a502-a1d446b70976\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6837\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c40897e-9590-41b1-9869-63c79226216e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/5c40897e-9590-41b1-9869-63c79226216e?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "5504d9f7-a3f6-4945-905c-b3534dd3e771" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184945Z:5504d9f7-a3f6-4945-905c-b3534dd3e771" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54ea62c7-ab1f-489c-9206-f9da84d146d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps6837' under resource group 'crptestps6837' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bab12027-207b-41d8-8d15-92e9099ad75d" + ], + "x-ms-correlation-request-id": [ + "bab12027-207b-41d8-8d15-92e9099ad75d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184946Z:bab12027-207b-41d8-8d15-92e9099ad75d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d54741b8-9da6-4662-b3a1-f6cc3f347216\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4b24d29-5dc4-4103-8529-4af4b5570e5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b2d811a0-22a9-465e-a27d-a198a37956b8\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "5ca40656-e023-4927-865c-cafc5b92a4a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184949Z:5ca40656-e023-4927-865c-cafc5b92a4a8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "addd4153-5d73-4cf1-9b14-bf54efd53ce9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d54741b8-9da6-4662-b3a1-f6cc3f347216\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31e73e41-1430-4b28-9540-4e75de15761d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b2d811a0-22a9-465e-a27d-a198a37956b8\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "a584e998-ccef-4db9-a541-35a0a795cfa5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184949Z:a584e998-ccef-4db9-a541-35a0a795cfa5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51fb8671-42c9-4172-a2d9-31e1d877eab5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d54741b8-9da6-4662-b3a1-f6cc3f347216\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29693063-a246-4e95-bffc-fe1e7f3ee2b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b2d811a0-22a9-465e-a27d-a198a37956b8\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "6d3f42e0-0c56-4e00-8e90-9aa6c769626e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184950Z:6d3f42e0-0c56-4e00-8e90-9aa6c769626e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTctMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "843" + ], + "x-ms-client-request-id": [ + "755b70b1-1bbe-4690-b7e1-dc579d550f6a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps6837\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d54741b8-9da6-4662-b3a1-f6cc3f347216\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b2d811a0-22a9-465e-a27d-a198a37956b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6837/subnets/subnetcrptestps6837\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cs2oboyzsmyephpcudf0n2vtba.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d39f65aa-51d7-484b-927c-c7595b8a1e34" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/d39f65aa-51d7-484b-927c-c7595b8a1e34?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "88e43055-997d-46ab-bfef-df1724a42f87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184949Z:88e43055-997d-46ab-bfef-df1724a42f87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:49 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Storage/storageAccounts/stocrptestps6837?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "94" + ], + "x-ms-client-request-id": [ + "b4d48769-f6dd-4334-b013-a4a9276fbe86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ad9271df-1cc7-42f6-a112-2032dc8b199e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ad9271df-1cc7-42f6-a112-2032dc8b199e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184953Z:ad9271df-1cc7-42f6-a112-2032dc8b199e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "759d51b5-2c2d-497b-9cc0-be7477c4b6be" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "759d51b5-2c2d-497b-9cc0-be7477c4b6be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184954Z:759d51b5-2c2d-497b-9cc0-be7477c4b6be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "185ba631-89ae-409c-8f4c-395161becd7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "185ba631-89ae-409c-8f4c-395161becd7b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184954Z:185ba631-89ae-409c-8f4c-395161becd7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "ed2afd9b-d2a3-4e15-b4a6-6191ee5644dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ed2afd9b-d2a3-4e15-b4a6-6191ee5644dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184954Z:ed2afd9b-d2a3-4e15-b4a6-6191ee5644dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "9d61cd5b-a5f1-4855-bf39-ce38b7092e9e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9d61cd5b-a5f1-4855-bf39-ce38b7092e9e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184954Z:9d61cd5b-a5f1-4855-bf39-ce38b7092e9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "8ac54a65-8493-43bb-a237-0f49b21ba2de" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8ac54a65-8493-43bb-a237-0f49b21ba2de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184954Z:8ac54a65-8493-43bb-a237-0f49b21ba2de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "177ebae7-9da1-4d0a-a384-20b98cba3b9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "177ebae7-9da1-4d0a-a384-20b98cba3b9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184955Z:177ebae7-9da1-4d0a-a384-20b98cba3b9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "04c49c42-1633-4923-bec6-94eb494a95ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "04c49c42-1633-4923-bec6-94eb494a95ea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184955Z:04c49c42-1633-4923-bec6-94eb494a95ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "6627abbb-2cb2-4fb5-877c-ccbc3f9299fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6627abbb-2cb2-4fb5-877c-ccbc3f9299fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184955Z:6627abbb-2cb2-4fb5-877c-ccbc3f9299fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "ac7ab4ac-e5d6-4773-8815-b22e200caaa8" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ac7ab4ac-e5d6-4773-8815-b22e200caaa8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184955Z:ac7ab4ac-e5d6-4773-8815-b22e200caaa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "01eb5a12-3f11-4da9-915b-21cca880e55a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "01eb5a12-3f11-4da9-915b-21cca880e55a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184955Z:01eb5a12-3f11-4da9-915b-21cca880e55a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "a0cbd794-9edb-4418-81dc-5d3687fd374f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a0cbd794-9edb-4418-81dc-5d3687fd374f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184956Z:a0cbd794-9edb-4418-81dc-5d3687fd374f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "b692ca98-7af0-4ba7-b419-3bf6ed02f7be" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b692ca98-7af0-4ba7-b419-3bf6ed02f7be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184956Z:b692ca98-7af0-4ba7-b419-3bf6ed02f7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:55 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "edd25bd3-3d16-4a48-8835-4a0492032018" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "edd25bd3-3d16-4a48-8835-4a0492032018" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184956Z:edd25bd3-3d16-4a48-8835-4a0492032018" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "93f2a822-21c6-4c88-935a-3f95b49335d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "93f2a822-21c6-4c88-935a-3f95b49335d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184956Z:93f2a822-21c6-4c88-935a-3f95b49335d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "c21dabfc-3e25-4ed9-a566-e01fb32f5d33" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c21dabfc-3e25-4ed9-a566-e01fb32f5d33" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184956Z:c21dabfc-3e25-4ed9-a566-e01fb32f5d33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d12be664-58a1-4827-b4ac-a78aa777e288" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d12be664-58a1-4827-b4ac-a78aa777e288" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184957Z:d12be664-58a1-4827-b4ac-a78aa777e288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "26d68f0b-8c5a-4323-abf4-e113987e2ae6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "26d68f0b-8c5a-4323-abf4-e113987e2ae6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184957Z:26d68f0b-8c5a-4323-abf4-e113987e2ae6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:56 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "d1246d84-1073-4ca6-adea-b84a0db03edb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d1246d84-1073-4ca6-adea-b84a0db03edb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184957Z:d1246d84-1073-4ca6-adea-b84a0db03edb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "51ba9f1f-686b-481d-8fd3-7813b8f30836" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "51ba9f1f-686b-481d-8fd3-7813b8f30836" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184957Z:51ba9f1f-686b-481d-8fd3-7813b8f30836" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "ef19ce04-6cc1-4547-af53-8fdc3cf0cdd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ef19ce04-6cc1-4547-af53-8fdc3cf0cdd8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184957Z:ef19ce04-6cc1-4547-af53-8fdc3cf0cdd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "b1c99d52-98e5-4824-a847-312956a1d87b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b1c99d52-98e5-4824-a847-312956a1d87b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184957Z:b1c99d52-98e5-4824-a847-312956a1d87b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "8f19a16a-ba74-4e75-9623-507ea1f1011c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8f19a16a-ba74-4e75-9623-507ea1f1011c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184958Z:8f19a16a-ba74-4e75-9623-507ea1f1011c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "66c5c778-7a11-4db6-a3fc-8e4cca7f4a00" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "66c5c778-7a11-4db6-a3fc-8e4cca7f4a00" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184958Z:66c5c778-7a11-4db6-a3fc-8e4cca7f4a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "9c395fc8-c782-4b6e-babe-8aec5b25b533" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9c395fc8-c782-4b6e-babe-8aec5b25b533" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184958Z:9c395fc8-c782-4b6e-babe-8aec5b25b533" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:58 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "5e237936-e1dd-408a-b25c-0b6844c39a73" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5e237936-e1dd-408a-b25c-0b6844c39a73" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184958Z:5e237936-e1dd-408a-b25c-0b6844c39a73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:58 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "5649082e-6ddb-4eef-84b6-c76893f536fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5649082e-6ddb-4eef-84b6-c76893f536fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184958Z:5649082e-6ddb-4eef-84b6-c76893f536fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:58 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "19b8b5ff-a81b-405e-ae5a-34d48a2c8621" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "19b8b5ff-a81b-405e-ae5a-34d48a2c8621" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184959Z:19b8b5ff-a81b-405e-ae5a-34d48a2c8621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:58 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "d490e14f-1866-4d4d-b4f0-e4edae84d613" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d490e14f-1866-4d4d-b4f0-e4edae84d613" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184959Z:d490e14f-1866-4d4d-b4f0-e4edae84d613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:58 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "0a9cca8f-28ee-4415-9a5c-a03a169feb68" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0a9cca8f-28ee-4415-9a5c-a03a169feb68" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184959Z:0a9cca8f-28ee-4415-9a5c-a03a169feb68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "3d7c6cd6-5dda-41d8-a7bd-1e2f44fc8034" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3d7c6cd6-5dda-41d8-a7bd-1e2f44fc8034" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184959Z:3d7c6cd6-5dda-41d8-a7bd-1e2f44fc8034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "d8629f50-cee5-4999-8825-0a6fc4b6fddb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d8629f50-cee5-4999-8825-0a6fc4b6fddb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T184959Z:d8629f50-cee5-4999-8825-0a6fc4b6fddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "70179ab1-a5b4-41a4-83d6-ac68dca57bd1" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "70179ab1-a5b4-41a4-83d6-ac68dca57bd1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185000Z:70179ab1-a5b4-41a4-83d6-ac68dca57bd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "048f00f3-f44f-4f96-b14d-ab1a8f8e0936" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "048f00f3-f44f-4f96-b14d-ab1a8f8e0936" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185000Z:048f00f3-f44f-4f96-b14d-ab1a8f8e0936" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "a4f49bd9-5b57-4feb-96b5-932a5efe8397" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a4f49bd9-5b57-4feb-96b5-932a5efe8397" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185000Z:a4f49bd9-5b57-4feb-96b5-932a5efe8397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:49:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "4fc4cc34-48d3-42bf-af20-e62e27c35393" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4fc4cc34-48d3-42bf-af20-e62e27c35393" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185000Z:4fc4cc34-48d3-42bf-af20-e62e27c35393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "a9edd635-d947-4fbd-b5a9-673acfece6bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a9edd635-d947-4fbd-b5a9-673acfece6bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185000Z:a9edd635-d947-4fbd-b5a9-673acfece6bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "fa350a1a-a450-4786-a79b-77ef242a0a2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "fa350a1a-a450-4786-a79b-77ef242a0a2e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185000Z:fa350a1a-a450-4786-a79b-77ef242a0a2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "08c75de0-5261-428d-8977-faa2f79e57a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "08c75de0-5261-428d-8977-faa2f79e57a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185001Z:08c75de0-5261-428d-8977-faa2f79e57a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "6eb9c3fd-db17-4612-911c-a07b33dd95d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6eb9c3fd-db17-4612-911c-a07b33dd95d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185001Z:6eb9c3fd-db17-4612-911c-a07b33dd95d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "49067cf1-44ef-4f98-baa6-f698b71107a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "49067cf1-44ef-4f98-baa6-f698b71107a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185001Z:49067cf1-44ef-4f98-baa6-f698b71107a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:01 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "bf82ab6b-e4ef-49b9-86e1-45f14bad509c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bf82ab6b-e4ef-49b9-86e1-45f14bad509c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185001Z:bf82ab6b-e4ef-49b9-86e1-45f14bad509c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:01 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "ff80e472-bb9d-4eb6-80a1-37dcefe7fc28" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ff80e472-bb9d-4eb6-80a1-37dcefe7fc28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185001Z:ff80e472-bb9d-4eb6-80a1-37dcefe7fc28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:01 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "d094a2f0-4977-473a-b8ac-72fe9ec26394" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d094a2f0-4977-473a-b8ac-72fe9ec26394" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185002Z:d094a2f0-4977-473a-b8ac-72fe9ec26394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:01 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "beeda09e-71ce-4cc4-aecc-43c40e88efe2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "beeda09e-71ce-4cc4-aecc-43c40e88efe2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185002Z:beeda09e-71ce-4cc4-aecc-43c40e88efe2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:01 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "eb8175dd-1f93-4430-ace9-de1e8b10c64e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "eb8175dd-1f93-4430-ace9-de1e8b10c64e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185002Z:eb8175dd-1f93-4430-ace9-de1e8b10c64e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:02 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "6614a134-9b25-4696-819b-c13d6196704e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6614a134-9b25-4696-819b-c13d6196704e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185002Z:6614a134-9b25-4696-819b-c13d6196704e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:02 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "b1463360-128a-4b68-bc41-2dd3052e7259" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b1463360-128a-4b68-bc41-2dd3052e7259" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185002Z:b1463360-128a-4b68-bc41-2dd3052e7259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:02 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "5cc81720-9069-4e29-8dba-f3491c0367d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5cc81720-9069-4e29-8dba-f3491c0367d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185003Z:5cc81720-9069-4e29-8dba-f3491c0367d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:02 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "314ef5f5-3ac7-41f0-8225-d95b2931f0bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "314ef5f5-3ac7-41f0-8225-d95b2931f0bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185003Z:314ef5f5-3ac7-41f0-8225-d95b2931f0bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:02 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "0ff41578-3971-4b4b-aa10-2e50818d310f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0ff41578-3971-4b4b-aa10-2e50818d310f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185003Z:0ff41578-3971-4b4b-aa10-2e50818d310f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:03 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "dca97cfc-3334-4ca2-909d-00532b626ae3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "dca97cfc-3334-4ca2-909d-00532b626ae3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185003Z:dca97cfc-3334-4ca2-909d-00532b626ae3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:03 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "6533076d-ea42-43bb-85d7-68d725329157" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6533076d-ea42-43bb-85d7-68d725329157" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185003Z:6533076d-ea42-43bb-85d7-68d725329157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:03 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "0627048b-8ca1-4f61-9eb4-3fad95e277bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0627048b-8ca1-4f61-9eb4-3fad95e277bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185004Z:0627048b-8ca1-4f61-9eb4-3fad95e277bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:03 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "8a921060-503d-4915-87f0-48817b5c813b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8a921060-503d-4915-87f0-48817b5c813b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185004Z:8a921060-503d-4915-87f0-48817b5c813b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:03 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "02029d8e-14f2-45df-93ce-0fc364e1ca82" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "02029d8e-14f2-45df-93ce-0fc364e1ca82" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185004Z:02029d8e-14f2-45df-93ce-0fc364e1ca82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:03 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "0e4d810b-236c-49eb-97e7-ca7379c0c2c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0e4d810b-236c-49eb-97e7-ca7379c0c2c4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185004Z:0e4d810b-236c-49eb-97e7-ca7379c0c2c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:04 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "6e7301c7-89ad-4a3b-9549-e7a4cf563d19" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6e7301c7-89ad-4a3b-9549-e7a4cf563d19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185004Z:6e7301c7-89ad-4a3b-9549-e7a4cf563d19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:04 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "73565702-2272-49db-8201-b2a7cd211ec8" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "73565702-2272-49db-8201-b2a7cd211ec8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185004Z:73565702-2272-49db-8201-b2a7cd211ec8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:04 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "ecbf1d9d-e2f1-48b1-b1a2-a98364bd8270" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ecbf1d9d-e2f1-48b1-b1a2-a98364bd8270" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185005Z:ecbf1d9d-e2f1-48b1-b1a2-a98364bd8270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:04 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "639d1eaf-431c-4bb0-9842-d58b9c436f0d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "639d1eaf-431c-4bb0-9842-d58b9c436f0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185005Z:639d1eaf-431c-4bb0-9842-d58b9c436f0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:04 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "a995b929-2b77-456f-8ed9-9ebb13168e9e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a995b929-2b77-456f-8ed9-9ebb13168e9e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185005Z:a995b929-2b77-456f-8ed9-9ebb13168e9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:04 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "39f3e08c-c7a0-453b-8926-ebdcefccd311" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "39f3e08c-c7a0-453b-8926-ebdcefccd311" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185005Z:39f3e08c-c7a0-453b-8926-ebdcefccd311" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:05 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "581d1b59-38a3-4df5-8835-83bd27d80d67" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "581d1b59-38a3-4df5-8835-83bd27d80d67" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185005Z:581d1b59-38a3-4df5-8835-83bd27d80d67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:05 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "18350410-5e0c-42c1-9e08-6ee9c5382ff1" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "18350410-5e0c-42c1-9e08-6ee9c5382ff1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185006Z:18350410-5e0c-42c1-9e08-6ee9c5382ff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:05 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "6619bd1d-42cd-4ad2-a628-97d003486c7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6619bd1d-42cd-4ad2-a628-97d003486c7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185006Z:6619bd1d-42cd-4ad2-a628-97d003486c7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:05 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "2ef20779-adfd-4da0-b587-07b00aea910a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2ef20779-adfd-4da0-b587-07b00aea910a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185006Z:2ef20779-adfd-4da0-b587-07b00aea910a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:05 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "e4a1e611-b8ba-4f17-bd37-7966b64985bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e4a1e611-b8ba-4f17-bd37-7966b64985bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185006Z:e4a1e611-b8ba-4f17-bd37-7966b64985bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "66e4295b-bb1e-4763-863b-b50bfb3d44f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "66e4295b-bb1e-4763-863b-b50bfb3d44f3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185006Z:66e4295b-bb1e-4763-863b-b50bfb3d44f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "847901ac-9784-4e3a-a4e3-429e236bfe7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "847901ac-9784-4e3a-a4e3-429e236bfe7f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185006Z:847901ac-9784-4e3a-a4e3-429e236bfe7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "8abde64b-bbf2-47a7-94a5-15e7089eea59" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8abde64b-bbf2-47a7-94a5-15e7089eea59" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185007Z:8abde64b-bbf2-47a7-94a5-15e7089eea59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "57c83953-86f0-428f-b42b-66b77db63b2b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "57c83953-86f0-428f-b42b-66b77db63b2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185007Z:57c83953-86f0-428f-b42b-66b77db63b2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "a9d05d4d-6e3f-4ed2-a738-7f055e8c4198" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a9d05d4d-6e3f-4ed2-a738-7f055e8c4198" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185007Z:a9d05d4d-6e3f-4ed2-a738-7f055e8c4198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "aca1c8f7-b5dd-4689-9f5c-d7ae1f3789c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "aca1c8f7-b5dd-4689-9f5c-d7ae1f3789c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185007Z:aca1c8f7-b5dd-4689-9f5c-d7ae1f3789c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:07 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "9622eac3-1c6d-4dee-a444-8ba4469d6851" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9622eac3-1c6d-4dee-a444-8ba4469d6851" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185007Z:9622eac3-1c6d-4dee-a444-8ba4469d6851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:07 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "9bd7374f-2940-40ba-87b7-a65fc3ccb31a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9bd7374f-2940-40ba-87b7-a65fc3ccb31a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185008Z:9bd7374f-2940-40ba-87b7-a65fc3ccb31a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:07 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "e8ac38c5-e27c-4d4f-816b-85f366a1e184" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e8ac38c5-e27c-4d4f-816b-85f366a1e184" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185008Z:e8ac38c5-e27c-4d4f-816b-85f366a1e184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:07 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "7b3d9d62-3074-4034-9f13-779a8239d4fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7b3d9d62-3074-4034-9f13-779a8239d4fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185008Z:7b3d9d62-3074-4034-9f13-779a8239d4fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:07 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "78544d17-d6e6-4f5d-b2a2-7741527f7bc7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "78544d17-d6e6-4f5d-b2a2-7741527f7bc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185008Z:78544d17-d6e6-4f5d-b2a2-7741527f7bc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "f267026a-6529-4904-84d2-1d7022a4fed4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f267026a-6529-4904-84d2-1d7022a4fed4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185008Z:f267026a-6529-4904-84d2-1d7022a4fed4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "148ec07a-2361-4e45-ab0d-131ba3f20579" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "148ec07a-2361-4e45-ab0d-131ba3f20579" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185009Z:148ec07a-2361-4e45-ab0d-131ba3f20579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "d7e36ccc-328c-4484-a3e9-dab98793c676" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d7e36ccc-328c-4484-a3e9-dab98793c676" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185009Z:d7e36ccc-328c-4484-a3e9-dab98793c676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "be245bea-fa92-4f2c-87cf-b476c35ad4d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "be245bea-fa92-4f2c-87cf-b476c35ad4d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185009Z:be245bea-fa92-4f2c-87cf-b476c35ad4d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "7503c117-0184-4281-869c-603bcc43c774" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7503c117-0184-4281-869c-603bcc43c774" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185009Z:7503c117-0184-4281-869c-603bcc43c774" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:09 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b3bd5ccd-6aa2-453d-baca-99f59a7d08f4?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjNiZDVjY2QtNmFhMi00NTNkLWJhY2EtOTlmNTlhN2QwOGY0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "71" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8437c10c-dde8-4ebf-a981-536996f36dcc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "8437c10c-dde8-4ebf-a981-536996f36dcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185009Z:8437c10c-dde8-4ebf-a981-536996f36dcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Storage/storageAccounts/stocrptestps6837?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2ODM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1822d341-cc7c-4776-a5c0-6d831091a168" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Storage/storageAccounts/stocrptestps6837\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stocrptestps6837\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2017-11-06T18:49:52.9403455Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6837.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64173b06-2ce5-4b23-9711-67f048c25a7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "64173b06-2ce5-4b23-9711-67f048c25a7a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185009Z:64173b06-2ce5-4b23-9711-67f048c25a7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Storage/storageAccounts/stocrptestps6837/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2ODM3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d95a7eb-4c9e-4699-95c8-34c8f6d12408" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"OzTytsm3DygThfzs9KQdeFFtBZ0Hwvl+7UgvjCmE65VGgx6yKiCDBXKFZVlWAuAgHkvTZEuPLwDCbZQX4oHJiQ==\",\r\n \"key2\": \"VVaBrqDZ8xEnTzyywROMjz3ycBOZEYFVCBXWaYSo41b6ztvGPjL9r5X+FVjSGipbV2gcFLt5IEaAtIY1of7qdw==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e353ba6-e485-4b2d-928b-3bd89c1afcf5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7e353ba6-e485-4b2d-928b-3bd89c1afcf5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185010Z:7e353ba6-e485-4b2d-928b-3bd89c1afcf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\",\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"PLACEHOLDER1@\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1700" + ], + "x-ms-client-request-id": [ + "fcb3e50d-683d-4905-bf8a-32e89fa27591" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4ad47d1c-bf01-48a3-b820-da35ec528258" + ], + "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": [ + "7ec35caa-d458-4166-b592-63151bca045a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185016Z:7ec35caa-d458-4166-b592-63151bca045a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\",\r\n \"diskSizeGB\": 128,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n }\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n }\r\n },\r\n {\r\n \"lun\": 3,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 2059,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2722" + ], + "x-ms-client-request-id": [ + "6a5c762a-ad92-4c1a-938e-66fb25cd67ab" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2875" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d6ab7cf0-4dda-48ee-8114-2c53e0c18815" + ], + "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": [ + "3ca24e15-b526-4ca4-b357-a8b0fc3eb712" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185438Z:3ca24e15-b526-4ca4-b357-a8b0fc3eb712" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a86dabe1-fbfa-459c-a378-0a140319b3ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "0286f580-bbe3-40d1-97b6-860f4dc41661" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185016Z:0286f580-bbe3-40d1-97b6-860f4dc41661" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "96e8ea88-a079-4f72-832d-14a7a819b757" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "c090d2a7-0021-42a8-86c8-4334eed35642" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185016Z:c090d2a7-0021-42a8-86c8-4334eed35642" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "955d6b99-b7c6-47d8-9719-2805836522ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "9aa215a7-b3a4-4d3a-93fc-5c43c00d5bad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185016Z:9aa215a7-b3a4-4d3a-93fc-5c43c00d5bad" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4d9964c7-8b8d-44af-8b05-1ea6ddf9dbfe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "f0b14e88-566b-449c-95b0-2546a7a503fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185016Z:f0b14e88-566b-449c-95b0-2546a7a503fb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "47bba5d5-8dd7-4a90-bcb5-92a05a7311ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "efc23272-3359-4bff-b0ac-b8276133f447" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185017Z:efc23272-3359-4bff-b0ac-b8276133f447" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2588b2e9-6164-4b2a-a018-6c6c29ee0a99" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "009e142e-a573-4b71-b6f4-1a1febbf0b9d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185017Z:009e142e-a573-4b71-b6f4-1a1febbf0b9d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f2432c04-618e-4997-82d1-67f97303baa6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "c07b1315-e053-4784-83d5-b9e756a99fe5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185017Z:c07b1315-e053-4784-83d5-b9e756a99fe5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b50dbfb2-ffd1-4294-a21c-d9927e9ceb4d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "2db15d1b-5f61-4ac6-bea8-f4bb2f3a20c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185017Z:2db15d1b-5f61-4ac6-bea8-f4bb2f3a20c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4f8494d9-1fc8-471f-8880-98f1d85a980e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "2f7a15d8-d064-42b5-b962-2e8bf60c272b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185018Z:2f7a15d8-d064-42b5-b962-2e8bf60c272b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "420357ed-f0d3-4f07-a9fb-2ebd5496b25c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "54349f3a-6daa-42a8-bc16-4c5b16745b81" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185018Z:54349f3a-6daa-42a8-bc16-4c5b16745b81" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bf9732ec-bf31-462b-ae0e-ee504846c3c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "2f1dcafa-7435-4c0a-9821-1d988e06dc65" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185018Z:2f1dcafa-7435-4c0a-9821-1d988e06dc65" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ca9ea1cf-fdd4-4fb8-b486-46b1059e1c5b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "c4a7a370-4316-4633-a140-cba2afe8e57c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185018Z:c4a7a370-4316-4633-a140-cba2afe8e57c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "58de412b-b5cd-433f-8643-ed33a788462a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "48129c3a-9e8d-4c23-a010-711293ea84a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185018Z:48129c3a-9e8d-4c23-a010-711293ea84a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "966f48a3-c7af-4778-b26b-f3650a9beec3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "11db883b-85e6-4780-b09b-589c375a7e87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185019Z:11db883b-85e6-4780-b09b-589c375a7e87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a70dd339-18ba-4cf8-a0e4-48d97fbdfeb2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "fb14522e-07c0-4843-9b24-72f693242332" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185019Z:fb14522e-07c0-4843-9b24-72f693242332" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "80a6cd27-eaa1-4fa2-b936-c499824755f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "57394fd9-4507-4ec4-85d8-d0c50da9731c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185019Z:57394fd9-4507-4ec4-85d8-d0c50da9731c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9d044a85-0f65-462e-8633-d940c282cac8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "a4dbac5b-78a3-454e-af68-9ac79c210c15" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185019Z:a4dbac5b-78a3-454e-af68-9ac79c210c15" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aaddcfa5-61b1-434a-8f73-2ec0e26e981f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "3110a11b-2fb1-4d46-b044-7a11b361a341" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185020Z:3110a11b-2fb1-4d46-b044-7a11b361a341" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "938efdbc-ac7b-4860-accc-2f49830a2dd5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "b1186940-6513-4ff0-86f3-0fdc12d49618" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185020Z:b1186940-6513-4ff0-86f3-0fdc12d49618" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "065eac93-09d0-4119-9619-b4ffc70c66cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "b36f1c57-fde1-4a41-b775-f21a2846b552" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185020Z:b36f1c57-fde1-4a41-b775-f21a2846b552" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "be96942e-4a86-405b-8951-91554b51872b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "a4a6bd84-07bb-4f99-aa83-1fd8cfb8f2ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185020Z:a4a6bd84-07bb-4f99-aa83-1fd8cfb8f2ff" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a247035-9b04-416e-953f-e21bbdbd5de9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "87f358ab-b320-46e4-ad54-f8c3301faa72" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185021Z:87f358ab-b320-46e4-ad54-f8c3301faa72" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7277f349-8102-457c-b6d7-79c2f32ae9fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "6eae4c0d-b8ee-419c-a3b8-7da9c67286a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185021Z:6eae4c0d-b8ee-419c-a3b8-7da9c67286a1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "46688801-76f7-4071-a46d-5681bbec2399" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "bbb012f7-9123-4244-9709-c8bed57eb7fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185021Z:bbb012f7-9123-4244-9709-c8bed57eb7fa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fa3db73b-aca4-4646-84fd-eb3154243a65" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "f58062eb-02c1-4db4-b9d9-293bd3e02d02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185021Z:f58062eb-02c1-4db4-b9d9-293bd3e02d02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e14aab1-a819-4f78-9a6b-e94e9bce11c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "39ac41da-a321-469a-9e8b-a668bb14239b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185021Z:39ac41da-a321-469a-9e8b-a668bb14239b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "36a9cdfd-cfaf-4753-93a3-ebbacd8cfff7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "a4d3fea1-47df-4b4d-a481-35edb50cdbe5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185022Z:a4d3fea1-47df-4b4d-a481-35edb50cdbe5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d3d812c3-3679-4953-a451-c774318e6aca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "5ebc0821-4964-4353-896e-8bc218e306dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185022Z:5ebc0821-4964-4353-896e-8bc218e306dd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "596d3ce0-193c-4cb7-a722-92db31b52ef7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "a3b4611d-6c65-4b27-82a7-775aa6122272" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185022Z:a3b4611d-6c65-4b27-82a7-775aa6122272" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4bf19b02-cd1f-44d8-9cfb-34988c637945" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "49ee6eda-4ef2-47f4-94b5-275cd0035244" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185022Z:49ee6eda-4ef2-47f4-94b5-275cd0035244" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a44a80c-50f5-4805-ae3a-e1ba04f6d7ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "c1f3c8ee-23e6-4981-a36d-e8c6edda9579" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185022Z:c1f3c8ee-23e6-4981-a36d-e8c6edda9579" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4314a29d-e2c8-4138-baa5-013e2097ecdb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "d451779c-5881-46ac-9a56-1fbd0074ad48" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185023Z:d451779c-5881-46ac-9a56-1fbd0074ad48" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6acafeb4-efa1-4449-adbc-efb36f1682b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "2766ad3b-4fdb-47ea-8a6b-eeaabcae4c35" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185023Z:2766ad3b-4fdb-47ea-8a6b-eeaabcae4c35" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "16916a50-4ac8-4a92-a4ad-dc9cce497c3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "2ef11a2c-ca4e-4448-8c70-b400b8585144" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185023Z:2ef11a2c-ca4e-4448-8c70-b400b8585144" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "363d3772-3e18-4040-b25d-59fc31239e5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "18c4ba48-fcbc-4cbd-b0de-056eb2ea8ed9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185023Z:18c4ba48-fcbc-4cbd-b0de-056eb2ea8ed9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c850915-b51b-4dd5-b462-cfaddc4c2934" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "db44baa9-9c74-4c9b-8f3a-3f2a992665df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185024Z:db44baa9-9c74-4c9b-8f3a-3f2a992665df" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2b68bff0-1780-4b11-9071-039de865cdd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "b113bf73-fa61-426a-aa7a-c007fac3033a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185024Z:b113bf73-fa61-426a-aa7a-c007fac3033a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "470e01ae-050a-4bf9-8cda-2af2feeb9319" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "94542a24-c04a-4724-bc0c-61a15e506d83" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185024Z:94542a24-c04a-4724-bc0c-61a15e506d83" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1f8e86e2-eddb-4101-9eef-9be3a6fe0f00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "ca8b2b34-2338-47e1-847e-88fa2e922f25" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185024Z:ca8b2b34-2338-47e1-847e-88fa2e922f25" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "41cdd02f-e976-4934-a31c-cd4c90a2cc95" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "a0735d07-6662-4afc-9121-afcde5ef13d3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185024Z:a0735d07-6662-4afc-9121-afcde5ef13d3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "89e3f6ff-271a-4706-ba28-dee6e192fc55" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "05c723a8-1f63-4d24-a169-f453207b7c05" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185025Z:05c723a8-1f63-4d24-a169-f453207b7c05" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "55d09bae-5b5c-4ce5-b8bc-1b3ea1cae7bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "2c3a39fc-b159-4934-a11c-a642d89a3af4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185025Z:2c3a39fc-b159-4934-a11c-a642d89a3af4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dc504dbf-730d-4106-a5c6-c8a08bb784c1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "7df74a1e-1e87-4643-b64b-971195990a7f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185025Z:7df74a1e-1e87-4643-b64b-971195990a7f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0badd448-d75d-41dc-8dbc-36d231f0ac36" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "1c9edbb6-e24c-42dc-a26e-38c3a06d1582" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185025Z:1c9edbb6-e24c-42dc-a26e-38c3a06d1582" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce15050c-3a05-4147-9332-903dab7f38eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "e3ac8e0b-0561-4428-bc9c-a9068b43071f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185026Z:e3ac8e0b-0561-4428-bc9c-a9068b43071f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25a4c7d7-8d89-4790-ae64-919229f47e0f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "bef9ca4b-99a5-4366-88f6-998e05393791" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185026Z:bef9ca4b-99a5-4366-88f6-998e05393791" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da940f8f-8fba-4e0e-889d-1752065934c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "34a24dbc-018b-4b03-a0f6-84e06f5230ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185026Z:34a24dbc-018b-4b03-a0f6-84e06f5230ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3e065d0f-9486-432b-9aa3-a15c61c3fc22" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "8d96b5be-01cc-4d57-bafa-aa64c4109b8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185026Z:8d96b5be-01cc-4d57-bafa-aa64c4109b8a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4585d6e2-4235-4980-a6d0-f1a22f6223b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "351b106c-339f-45c2-b290-b5b0d2334f3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185026Z:351b106c-339f-45c2-b290-b5b0d2334f3b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ad5e72f7-6981-43a8-b986-1164c5e11fe2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "9741afa0-d7af-497b-976d-a2b55b3133fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185027Z:9741afa0-d7af-497b-976d-a2b55b3133fb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a39d4d9d-40ae-424d-923f-8fc8307941be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "a9d82136-616f-4d57-b11c-5ed6712dbbcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185027Z:a9d82136-616f-4d57-b11c-5ed6712dbbcd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a849f56f-a2cd-4970-b8df-f44baba61143" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "c042deb5-fd85-42ca-a81c-808198b699a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185027Z:c042deb5-fd85-42ca-a81c-808198b699a3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "11576868-f44f-4240-b049-d903bf03bec7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "2cbaf762-ee97-4dd9-a764-e5f17a45213c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185027Z:2cbaf762-ee97-4dd9-a764-e5f17a45213c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf2b4a9e-a5b5-43c0-af9c-a7574ee56d66" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "62de9521-ffad-4fa5-9e49-ec81f052e957" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185028Z:62de9521-ffad-4fa5-9e49-ec81f052e957" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce183a8b-d7b7-4e09-8fb5-c23728bfb022" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "7c3d4f2f-80d4-46cb-91b9-34f753038bb4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185028Z:7c3d4f2f-80d4-46cb-91b9-34f753038bb4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "63dc4190-54b7-4b9c-98a2-8f72307a7bba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "216ab640-e02a-47b7-9df1-1299fcac4ff5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185028Z:216ab640-e02a-47b7-9df1-1299fcac4ff5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "091a0ef3-d083-483f-af29-a40c8fd7264a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "4e23fe64-f3e9-4744-980d-c15bd99d8d90" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185028Z:4e23fe64-f3e9-4744-980d-c15bd99d8d90" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5bcc77d3-4158-415e-a146-432d0a6e6ca7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "10a70f50-ef3b-4ab3-9397-a789648e7cb4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185029Z:10a70f50-ef3b-4ab3-9397-a789648e7cb4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dddda004-6de0-42ab-a80e-b29dc01e89fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "d7eaf397-f82a-4576-93a0-80bf376911cf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185029Z:d7eaf397-f82a-4576-93a0-80bf376911cf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a3b302d3-458d-4303-876a-55add496d415" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "ce21ed8e-e0bd-4b91-99e0-615a12b3a33b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185029Z:ce21ed8e-e0bd-4b91-99e0-615a12b3a33b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f9ffd807-37e2-4833-b876-5dda42cfbec1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "0a3d8799-afc3-4ab7-a5e9-d9fc320d8587" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185029Z:0a3d8799-afc3-4ab7-a5e9-d9fc320d8587" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a6665823-a6f3-4d4d-bb6f-3922af655754" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "81e1dd48-9979-4c78-b76e-c3e60ab20cb9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185029Z:81e1dd48-9979-4c78-b76e-c3e60ab20cb9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "367edeed-f30e-408c-9c4c-399418e9100f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "d9434ab8-4e60-46f5-adec-7edd29a3cebe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185030Z:d9434ab8-4e60-46f5-adec-7edd29a3cebe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c74a08e2-1aec-4ffd-96d6-8e394df642e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "1cb6a862-4f05-4362-86e2-6a4f47638c40" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185030Z:1cb6a862-4f05-4362-86e2-6a4f47638c40" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fe07e951-c71b-4d2f-8ee9-29b74b270d61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "57db6de2-8b0f-469d-9e5c-dda5a6d06a04" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185030Z:57db6de2-8b0f-469d-9e5c-dda5a6d06a04" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c191b56-1496-4380-9f49-79f3789a58df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "ad7a7f8d-1d4e-4b0c-95c6-c34ad4e5379a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185030Z:ad7a7f8d-1d4e-4b0c-95c6-c34ad4e5379a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5434fb7c-8840-48a9-9d4c-4b4e2595b52b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "d3183d1a-c6de-4cf8-b12c-2879c3e71f38" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185031Z:d3183d1a-c6de-4cf8-b12c-2879c3e71f38" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8dcaf26a-7c7a-4aab-ab5a-70b23bb8d5ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "2ed400a0-1332-47d5-af38-937e1d5357c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185031Z:2ed400a0-1332-47d5-af38-937e1d5357c5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d27301a-95da-4e5a-ad00-2e14745fd43c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "febc60ee-d292-4113-91c9-12729770827c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185031Z:febc60ee-d292-4113-91c9-12729770827c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cc1f3aa8-9ac9-4d31-a98a-e15324cd86c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "feb2c822-7a48-4fd6-870b-6eb0b8a871f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185031Z:feb2c822-7a48-4fd6-870b-6eb0b8a871f7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9829b54e-10fd-4668-ac1a-9348572a98a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "a4d15f5e-7f56-42ad-a660-5d4aaeed0cb1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185031Z:a4d15f5e-7f56-42ad-a660-5d4aaeed0cb1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf052b37-cbc4-490f-b98b-f1c818ee14ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "bd9b9c54-b1ff-45b9-a324-dc228097b00b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185032Z:bd9b9c54-b1ff-45b9-a324-dc228097b00b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bfc92b23-b5bf-4d7c-828c-1be9f0e401bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "b4a6bc2d-868a-4ccf-a352-f4c283f8cc5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185032Z:b4a6bc2d-868a-4ccf-a352-f4c283f8cc5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1acb7c02-b049-47df-87be-9ab78383b634" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "29410533-6c29-4af7-b171-c78924c90244" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185032Z:29410533-6c29-4af7-b171-c78924c90244" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a9a85264-16ee-4526-9da9-769bd1602c90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "44b20cde-583b-426a-9dfe-58b91f4c3467" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185032Z:44b20cde-583b-426a-9dfe-58b91f4c3467" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "445d5c74-e7c0-4bd6-9284-e6d52af0fefb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "00eb8450-c846-4411-bc57-0934b395ffcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185033Z:00eb8450-c846-4411-bc57-0934b395ffcd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a3a8d34d-6193-4370-8911-17ea2c1882ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "e9e22126-85e1-4d6d-8f07-443a3520dcd0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185033Z:e9e22126-85e1-4d6d-8f07-443a3520dcd0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "17da0b6f-7720-4d07-9dca-577961a79609" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "08fadcb5-2a43-4a44-9daa-c484a60dc5e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185033Z:08fadcb5-2a43-4a44-9daa-c484a60dc5e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d7d3229b-1ef9-496e-9c80-06005f31dbde" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "4acff565-ce26-42ef-be64-144c57af6232" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185033Z:4acff565-ce26-42ef-be64-144c57af6232" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6d7a36fe-ec61-4a11-97dd-f8af0ae1468e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "1210a7d1-5b0b-4fdf-9d18-7188b17183fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185033Z:1210a7d1-5b0b-4fdf-9d18-7188b17183fa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e8793032-8d99-4ed3-a412-1a2bb5a0c5b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "42ce4f41-c9f1-4f15-8c2e-0e5983e04853" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185034Z:42ce4f41-c9f1-4f15-8c2e-0e5983e04853" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a6da61e7-5840-45cb-8b57-9d882e0f2854" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "2c25f6b9-5572-4e74-8759-138458d2615d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185034Z:2c25f6b9-5572-4e74-8759-138458d2615d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "10b4f7f7-ff85-4e47-a85e-6ca45ace2fd4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "6b4e274e-25be-4343-a2ac-4decdb9d91c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185034Z:6b4e274e-25be-4343-a2ac-4decdb9d91c3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8562bd78-ec20-4af8-b191-592377947f1b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "19b14fa2-69b5-43f9-95cf-02877916d82b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185034Z:19b14fa2-69b5-43f9-95cf-02877916d82b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d8466880-847d-40c1-a7c6-dace928c45e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "c2434ad6-f89d-47b4-a239-04f350d3b935" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185035Z:c2434ad6-f89d-47b4-a239-04f350d3b935" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b17b6241-cdb0-4870-bf53-080ee9642cbc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "c206ce6e-c0e5-4049-b948-4a2c35014276" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185035Z:c206ce6e-c0e5-4049-b948-4a2c35014276" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ffc8be37-e90f-4bb6-a269-8b7714d43721" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "6bb0d4c8-87dd-4ee1-9203-be245ca3f8b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185035Z:6bb0d4c8-87dd-4ee1-9203-be245ca3f8b3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "32a0def4-60fc-49bb-9a46-98367e902c68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "2dc8fcb0-7563-45d0-9cf1-b1ac0d331c5f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185035Z:2dc8fcb0-7563-45d0-9cf1-b1ac0d331c5f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5015c1e3-fd61-4065-9455-633dcc6086ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "766c6c68-cdca-4b70-8ff8-2a38cb9347eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185035Z:766c6c68-cdca-4b70-8ff8-2a38cb9347eb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a29e0ac3-d7fe-4041-a10f-5a6ffc9b6bf6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "41b4aa4d-a995-49b6-a405-a06d16a9ef8d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185036Z:41b4aa4d-a995-49b6-a405-a06d16a9ef8d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "27494aba-4e7e-4419-9cca-914d082cac6f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "883d630a-4934-4b4f-b4c4-f58a909e2cbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185036Z:883d630a-4934-4b4f-b4c4-f58a909e2cbd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "afaec23b-e67f-4af6-b507-30af3ab976a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "65c0bf6a-702e-4662-82a2-0437814814e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185036Z:65c0bf6a-702e-4662-82a2-0437814814e3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "071d6b67-533e-46f1-9729-cf678698e3a1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "b3516834-1ee0-4a32-a3eb-244c0763c9d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185036Z:b3516834-1ee0-4a32-a3eb-244c0763c9d5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1fb136fd-8a94-4a93-b37a-72b3502f78a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "f731f2de-d98d-4c94-9599-6778ae2206af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185037Z:f731f2de-d98d-4c94-9599-6778ae2206af" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ebd1b9b3-2f5a-4ac9-901b-34ca32eb7eb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "1ae82686-a9cf-476f-a620-2b2666c0f2e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185037Z:1ae82686-a9cf-476f-a620-2b2666c0f2e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1b6565b3-95f2-46fb-b0f3-f7376ac3b29c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "7827c03b-acc9-41ee-86c1-eefc3f3d8d0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185037Z:7827c03b-acc9-41ee-86c1-eefc3f3d8d0d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5f5159b6-ab0d-47cd-9a0e-151048014d9a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "c27a6905-2941-49c7-977a-dc3da446a391" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185037Z:c27a6905-2941-49c7-977a-dc3da446a391" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "82030afe-246a-4561-b0a1-4977a01959b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "e934a1a4-c533-4d90-b15f-2f242b22f2b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185038Z:e934a1a4-c533-4d90-b15f-2f242b22f2b6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7864e15e-bae8-45f8-98df-55345ea1176f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "ca98e850-2cab-4897-9682-5064c96525bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185038Z:ca98e850-2cab-4897-9682-5064c96525bd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c49e8a2c-cc93-49c8-814c-86dc1635869f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "3f6ddd91-5027-4398-a286-ab5706a069a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185038Z:3f6ddd91-5027-4398-a286-ab5706a069a0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "14ce122b-9e13-4b70-9fe5-b4b398486843" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "1b9ba96f-c4a2-4654-9d06-631c2e711c96" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185038Z:1b9ba96f-c4a2-4654-9d06-631c2e711c96" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ab7f7e0c-1f96-4189-b57a-7b44c00beb1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "08e1118f-cef2-4b69-bd65-1f5376083bb3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185039Z:08e1118f-cef2-4b69-bd65-1f5376083bb3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "30345aaa-3dd1-4008-9dab-a561785ce4fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "0f392e23-b0f4-41ec-a551-fc88c470dfe9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185039Z:0f392e23-b0f4-41ec-a551-fc88c470dfe9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4eebc150-5cb6-4b65-ad30-8ebb4754bc54" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "054fb903-176d-4927-b49b-38b799f0a2d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185039Z:054fb903-176d-4927-b49b-38b799f0a2d5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b527a1f8-5ab2-4fc1-904e-3eb87afdfa5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "c4653165-0ebf-45d1-9107-8d3c382db11d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185039Z:c4653165-0ebf-45d1-9107-8d3c382db11d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9fe75eaa-bd52-44eb-b6a0-784b40be97f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "b1df5c9a-b11b-48e6-ad67-7b07ab194a69" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185039Z:b1df5c9a-b11b-48e6-ad67-7b07ab194a69" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6385847-4f30-4a11-8c51-c134e2b8282c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "ac521c1a-ca25-49ae-a374-33fdb84b447e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185040Z:ac521c1a-ca25-49ae-a374-33fdb84b447e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2b01c320-3410-42de-a858-c411f6f7003b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "0b021672-8e23-49bd-bb24-a5597f2a3025" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185040Z:0b021672-8e23-49bd-bb24-a5597f2a3025" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "58f5d1c3-ca4f-410c-8d04-f2612682c7c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "32e82e10-6a74-4fcc-b8d8-8fc72e6114b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185040Z:32e82e10-6a74-4fcc-b8d8-8fc72e6114b1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "32714e7c-6ae2-4f26-9a0d-a5824e43633c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "02513582-47a4-45ba-8f62-c1961445eee3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185040Z:02513582-47a4-45ba-8f62-c1961445eee3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "38b6d8f7-1034-432c-8d51-56a9688463d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "38e00651-d663-47cc-93df-1dca14445088" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185041Z:38e00651-d663-47cc-93df-1dca14445088" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "51c464ea-8d4c-4cc3-a51f-7f1e61e0aef1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "68c44e72-c181-4892-b749-6aca7bee0fdf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185041Z:68c44e72-c181-4892-b749-6aca7bee0fdf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e106c130-d8d1-4b4e-ae00-d363b40a334c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "5711d244-aae0-4db8-8b0c-87f387c76378" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185041Z:5711d244-aae0-4db8-8b0c-87f387c76378" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cd260d7a-3c0b-440e-8511-012268c1b7ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "74bf84e3-da41-468b-8974-b9abb52f4a09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185041Z:74bf84e3-da41-468b-8974-b9abb52f4a09" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7259bde8-2cc9-4052-822f-0676868b0322" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "19d1c2e3-7907-4623-bc1e-cf39829f8e67" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185041Z:19d1c2e3-7907-4623-bc1e-cf39829f8e67" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aa521cc7-8fec-4bca-989c-3749e17e1364" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "744b6761-96b9-4f09-b7f0-28c19ee6790b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185042Z:744b6761-96b9-4f09-b7f0-28c19ee6790b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74f77efc-da3d-447f-a53d-3d89a4411d77" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "00f3bf31-a829-4dc5-a082-aad75750d46a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185042Z:00f3bf31-a829-4dc5-a082-aad75750d46a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5abd8cb8-e6af-4c5e-89b1-3b5771c9b8a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "e3075985-a757-46e1-a1e1-3333277a6c5a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185042Z:e3075985-a757-46e1-a1e1-3333277a6c5a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "14dc726b-59bd-4a09-a02f-96589363919f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "ec9b6562-0595-4d5b-a16a-d1c8bcf35ea7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185042Z:ec9b6562-0595-4d5b-a16a-d1c8bcf35ea7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "09407147-7ec7-4faf-a5a8-f603400c1375" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "4be5e7d2-2c9b-4fd0-b1a8-0414a6f8af57" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185043Z:4be5e7d2-2c9b-4fd0-b1a8-0414a6f8af57" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8e7a3abe-24e6-4743-8fd6-1439208ba724" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "81f5ba2a-7f52-4bbb-9f3a-8cb362e6b54b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185043Z:81f5ba2a-7f52-4bbb-9f3a-8cb362e6b54b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5deefeb-4b08-4247-a798-17e97b0f763a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "14725f0c-b4db-4ae1-8028-b55a587ae3e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185043Z:14725f0c-b4db-4ae1-8028-b55a587ae3e7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d2f9978b-45cd-45af-8972-2cecb4ca5e7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "06295257-94d3-415f-ae1b-41dc7d8301a9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185043Z:06295257-94d3-415f-ae1b-41dc7d8301a9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5ca2660d-02a6-48b7-a117-1107129616a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "402108ae-5c1f-4290-8095-4096ed8b8451" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185044Z:402108ae-5c1f-4290-8095-4096ed8b8451" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2636c229-6113-4961-bed1-a784a48c8cf6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "a3539ec9-7ac1-46e8-9368-6f7c0fe88f9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185044Z:a3539ec9-7ac1-46e8-9368-6f7c0fe88f9b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "186ce714-739b-48be-84b0-898d1b1e9cef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "a49a916b-b456-4313-8be3-c1e82e920d98" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185044Z:a49a916b-b456-4313-8be3-c1e82e920d98" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3f5deb95-7c22-4e8e-9ced-2c35d5cdb814" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "a8e4e89f-1a75-4f48-bf9f-dc010b1d4f80" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185044Z:a8e4e89f-1a75-4f48-bf9f-dc010b1d4f80" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "53653117-1ea5-43c3-b48a-86bd56fd1770" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "1eb900bf-5f2f-4068-abd1-78a27f664435" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185045Z:1eb900bf-5f2f-4068-abd1-78a27f664435" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bc9cfb93-df33-45b6-8280-2588d98a3f23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "c54c5216-350d-466a-817c-72a502b16786" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185045Z:c54c5216-350d-466a-817c-72a502b16786" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "22859ccb-9b62-4e53-a1cf-e624703c1a37" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "c1b7bfde-0589-49ed-a0bf-16b8455b69de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185045Z:c1b7bfde-0589-49ed-a0bf-16b8455b69de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8adce0ed-be0d-407e-977b-03e1b9c913c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "2d5e1ad1-7a92-4f4f-b7eb-80f2dbb04b69" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185045Z:2d5e1ad1-7a92-4f4f-b7eb-80f2dbb04b69" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b36b6c33-a7d0-4bba-8d79-98472c2cccde" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-correlation-request-id": [ + "12d3f51a-490e-415b-95c4-2e03f76e55c2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185046Z:12d3f51a-490e-415b-95c4-2e03f76e55c2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0b9d5fb9-3b33-4db2-9d69-5f4769908edf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "bc6da003-315a-4f56-bc93-f19ff2437992" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185046Z:bc6da003-315a-4f56-bc93-f19ff2437992" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "65633d3b-9bb1-411a-8c0f-aa01664c60cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "87e6837b-5ebb-46a5-8eae-f14c1be18130" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185046Z:87e6837b-5ebb-46a5-8eae-f14c1be18130" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4bce10d0-e467-4391-bcfa-96eb9af0ef4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "bb21be45-ff62-4a88-a38c-c7d4fe869d89" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185046Z:bb21be45-ff62-4a88-a38c-c7d4fe869d89" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d45e0d1b-90f1-45ca-b6e8-4bf04a0f8070" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "4f7d95db-ddeb-47a9-a2f0-61a3af13069c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185046Z:4f7d95db-ddeb-47a9-a2f0-61a3af13069c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "99be934a-315a-42c0-876d-e1f9139e6a25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "f2c58343-214d-4d9b-b722-ce30a3155690" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185047Z:f2c58343-214d-4d9b-b722-ce30a3155690" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b11665a0-5cb2-4410-a2c7-47a5f5d4b142" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "x-ms-correlation-request-id": [ + "d16c1bdf-77ef-41a9-b90e-e49d1ee663e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185047Z:d16c1bdf-77ef-41a9-b90e-e49d1ee663e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7cb90ea5-5613-4d2f-9671-08ae5d12e35d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14859" + ], + "x-ms-correlation-request-id": [ + "4f9c41c1-c6c0-4e20-99ae-97edb2e1c950" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185047Z:4f9c41c1-c6c0-4e20-99ae-97edb2e1c950" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6ab78937-4fc7-41ce-bf57-2ebbdb002989" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14858" + ], + "x-ms-correlation-request-id": [ + "6fd6a1ec-5d2b-4615-a421-5f22bfcafe04" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185047Z:6fd6a1ec-5d2b-4615-a421-5f22bfcafe04" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e0189d0-af70-4da0-a584-6fa65069635b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "2fe95ee2-95c7-446d-a55d-36663074f085" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185048Z:2fe95ee2-95c7-446d-a55d-36663074f085" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8145a33c-c274-4322-ad5c-ed9c4bc2c328" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "b9425801-c526-4552-9682-f425e25f49e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185048Z:b9425801-c526-4552-9682-f425e25f49e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "71bd012b-9e16-4835-90af-4c390cd868a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "2d285308-284e-4e47-aa8a-e9bc985e1993" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185048Z:2d285308-284e-4e47-aa8a-e9bc985e1993" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "08fb7783-1cdd-4a36-b946-2f36a8b6a4c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-correlation-request-id": [ + "7131478d-aa65-461a-a181-06ca20e4ffdd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185048Z:7131478d-aa65-461a-a181-06ca20e4ffdd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "489f5145-7743-4e87-b25e-ff46a978474d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], + "x-ms-correlation-request-id": [ + "5b2f3e31-5d65-4883-9a63-41d43e95f370" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185049Z:5b2f3e31-5d65-4883-9a63-41d43e95f370" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e75c1430-d198-4136-919e-754dd1ee81c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-correlation-request-id": [ + "6dab5025-5307-4301-8145-ba18d704e412" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185049Z:6dab5025-5307-4301-8145-ba18d704e412" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9f2dc30-9242-4e0b-b4d4-b210af140e8d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-correlation-request-id": [ + "c403bedf-1e62-4b90-a27a-5844c5befa67" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185049Z:c403bedf-1e62-4b90-a27a-5844c5befa67" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a2490235-08fa-49fb-90b5-f5b879eabb7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "x-ms-correlation-request-id": [ + "4de5e091-44e3-4d75-a0df-27629cbae21b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185049Z:4de5e091-44e3-4d75-a0df-27629cbae21b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da3a22ad-8065-48d2-a762-d9d490d4392a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-correlation-request-id": [ + "028d5491-b48e-4d5c-8da1-47cdf716a093" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185050Z:028d5491-b48e-4d5c-8da1-47cdf716a093" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d61eb830-eb8e-47f4-b19c-dba9903d9539" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "x-ms-correlation-request-id": [ + "56165edc-e6a1-4ab4-8096-f302d8063064" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185050Z:56165edc-e6a1-4ab4-8096-f302d8063064" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "366566d3-06ba-4f04-a7d3-f3d226ab81a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "6c4813b4-5100-417a-9c6e-1a5870498c90" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185050Z:6c4813b4-5100-417a-9c6e-1a5870498c90" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce6bcb57-c126-4c78-9f68-813eb7ef1bbc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "dbf36ab0-fc09-4076-832e-0a9f1b7fcb5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185050Z:dbf36ab0-fc09-4076-832e-0a9f1b7fcb5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "40893cd4-a9d7-4700-a639-56ed5bfe90c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "6f971be8-2e8e-4af1-a33b-b3ee75aca21a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185051Z:6f971be8-2e8e-4af1-a33b-b3ee75aca21a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e89c6e69-7157-4e92-b9dc-82eb47bedd04" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-correlation-request-id": [ + "8ca8abc4-5991-4217-b46a-6fe86f0c0e78" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185051Z:8ca8abc4-5991-4217-b46a-6fe86f0c0e78" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7cb9cefb-11bc-4517-af7c-652bd0f691dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-correlation-request-id": [ + "6670e46d-3ec5-44f3-9eca-1d6dd4b645f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185051Z:6670e46d-3ec5-44f3-9eca-1d6dd4b645f0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fa6b84d5-a48d-40c7-b1c7-549c16c81a98" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "x-ms-correlation-request-id": [ + "197ab4a1-3d12-46de-be21-d2f6f31aa817" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185051Z:197ab4a1-3d12-46de-be21-d2f6f31aa817" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "647c332e-709e-40fe-8b04-c6322671d7c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "5c27a2df-024f-41aa-a227-946da8cf15e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185052Z:5c27a2df-024f-41aa-a227-946da8cf15e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c5295502-8497-404a-964a-5a259bccea17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-correlation-request-id": [ + "0c403a70-7e14-4e8a-a1d2-1af5dccbc4d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185052Z:0c403a70-7e14-4e8a-a1d2-1af5dccbc4d9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bbd9ead1-f7a7-4b6a-9181-5a9141d5fe98" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-correlation-request-id": [ + "a180c1de-a81f-4dc3-9dcd-a76ba6cbbfd4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185052Z:a180c1de-a81f-4dc3-9dcd-a76ba6cbbfd4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5a522001-cff3-4304-a494-fa99e6913c0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-correlation-request-id": [ + "3439ee70-660c-447a-bb31-0bc827dddfe4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185052Z:3439ee70-660c-447a-bb31-0bc827dddfe4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a03e9dc-8542-4e44-8d28-3632bf80765a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "c43611db-ccb0-4eb5-8b4d-eb1aa5dcd05e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185053Z:c43611db-ccb0-4eb5-8b4d-eb1aa5dcd05e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a056b199-dff6-428d-9298-d71d38444b89" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "44c6b311-720d-4de5-a4b5-cee04ffe965f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185053Z:44c6b311-720d-4de5-a4b5-cee04ffe965f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "21797fe9-f93e-478d-b064-49ba7724c8e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "518ff22a-1aef-4497-8888-202743d3648b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185053Z:518ff22a-1aef-4497-8888-202743d3648b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "32fe07b4-31b3-477a-9804-538d27c37a4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-correlation-request-id": [ + "deffde97-6ddd-4d8f-846c-45cbef42a373" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185053Z:deffde97-6ddd-4d8f-846c-45cbef42a373" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "811aef32-573e-42a2-8448-4788678a4e44" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "234a6fcf-4b65-41eb-ac84-0e074f3591ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185054Z:234a6fcf-4b65-41eb-ac84-0e074f3591ba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c0d5e527-4797-43f6-bb7f-a2b39fcf8acf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "76e426e6-0654-4573-b6c7-6b48bff62aea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185054Z:76e426e6-0654-4573-b6c7-6b48bff62aea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "489570ad-72df-4bc2-b5b0-dcd273c78a9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "88c74989-d40e-469d-b436-2252575388e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185054Z:88c74989-d40e-469d-b436-2252575388e2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1dd3bcd2-9ec1-4d05-9156-136eaba2cf13" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "ba86f54a-0567-4551-abe6-d17102b2625b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185054Z:ba86f54a-0567-4551-abe6-d17102b2625b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c7a902a3-b3ed-4da9-9f3d-194a81eaed28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "33d202e9-76e4-4d59-b98b-a11d2e3a0eb8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185054Z:33d202e9-76e4-4d59-b98b-a11d2e3a0eb8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c16c9386-7ecb-4cdf-a461-57bf2c5dac12" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "db26b138-0dc1-46a0-a67d-19794e193c2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185055Z:db26b138-0dc1-46a0-a67d-19794e193c2f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e7121bb4-6610-483b-9d78-dca7b796837d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" + ], + "x-ms-correlation-request-id": [ + "e74c7645-571d-4562-a881-f80f3906f090" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185055Z:e74c7645-571d-4562-a881-f80f3906f090" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0486115e-b3a9-48d2-8674-4a63191a7314" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "9299aedd-efb9-4f6e-9cee-6ee77d6759cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185055Z:9299aedd-efb9-4f6e-9cee-6ee77d6759cc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3278d1bd-1cd5-46e3-989c-71119545b744" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "x-ms-correlation-request-id": [ + "945d7853-0730-4cf2-9823-3ed843b446ea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185055Z:945d7853-0730-4cf2-9823-3ed843b446ea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "83682bff-c5ed-4617-8e3b-ea650047bc99" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-correlation-request-id": [ + "4db34dde-2c3b-41c5-97e5-c92971a920f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185056Z:4db34dde-2c3b-41c5-97e5-c92971a920f0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "93d58cbb-d891-4894-8bad-1b0c2b300d4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14823" + ], + "x-ms-correlation-request-id": [ + "7b9edc61-9c78-4716-a7aa-5d1a282e7293" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185056Z:7b9edc61-9c78-4716-a7aa-5d1a282e7293" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d01a355a-6ab7-41c8-886e-024c9e2fbf76" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14822" + ], + "x-ms-correlation-request-id": [ + "4a4af4e2-4b35-4ff3-b8f4-e13de41f0eed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185056Z:4a4af4e2-4b35-4ff3-b8f4-e13de41f0eed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e54b0c96-cdbf-491c-9031-7426f148d8f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-correlation-request-id": [ + "6ec3094e-8d9f-48b9-a193-74832a6d7c26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185056Z:6ec3094e-8d9f-48b9-a193-74832a6d7c26" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "abcc1244-c623-4012-9ffb-e0e0a548f3f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "x-ms-correlation-request-id": [ + "221603c9-69b0-4351-a457-aa5e042f4cf4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185057Z:221603c9-69b0-4351-a457-aa5e042f4cf4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fe6e843b-4759-46dc-8f97-4a9ca6c90f83" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "ba59c339-ae10-4184-aa39-f4bce50301e9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185057Z:ba59c339-ae10-4184-aa39-f4bce50301e9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9bc0b8ed-ae9c-48f4-ac12-ef9a7c8192ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-correlation-request-id": [ + "3583af51-38f8-4129-8e9c-d60dd7ec1300" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185057Z:3583af51-38f8-4129-8e9c-d60dd7ec1300" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5326a940-5160-4dae-abbc-dce555994931" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14817" + ], + "x-ms-correlation-request-id": [ + "be0acdcf-d686-4f92-b9cc-54a3fec3719d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185057Z:be0acdcf-d686-4f92-b9cc-54a3fec3719d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6a042bd-fdc4-49b8-b3e7-fbdca368b42f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "f23465ee-a7fa-48d2-9db0-0f5774e16bd0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185057Z:f23465ee-a7fa-48d2-9db0-0f5774e16bd0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e619bd0a-6e5d-4afd-a4a7-a304ed73e520" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-correlation-request-id": [ + "8d35e329-fc5b-48b1-80b5-91b7ef7ed31e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185058Z:8d35e329-fc5b-48b1-80b5-91b7ef7ed31e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aa4bccca-01f5-4abe-bf41-4a20fee40394" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "a5f82cfb-5df3-4a19-bf35-d0481726f8f6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185058Z:a5f82cfb-5df3-4a19-bf35-d0481726f8f6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f4783518-0f97-400b-852e-5cb4a2ddc54c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "98914287-edf6-4410-a372-afdf2800d4f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185058Z:98914287-edf6-4410-a372-afdf2800d4f0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d7501b8e-078e-4200-9ac9-8e61e163edca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "5b8cbab8-4fc6-48b5-a6fa-69101cf72ff3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185058Z:5b8cbab8-4fc6-48b5-a6fa-69101cf72ff3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6a3cee4-8f46-4f96-a22c-a0275afa0532" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "2ec231e9-4d65-467f-974a-35c98e1df5de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185059Z:2ec231e9-4d65-467f-974a-35c98e1df5de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7698755d-8e91-4369-892f-90449dca926f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "6db35377-881e-4a80-b095-753554642ae7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185059Z:6db35377-881e-4a80-b095-753554642ae7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f4388fbb-8dfe-4d60-a591-c221fd9338b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "842b10a0-bcbc-4e36-b03f-915c2fd0d6c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185059Z:842b10a0-bcbc-4e36-b03f-915c2fd0d6c9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8b88d4b8-9a7d-47d7-80d6-2be65b566b12" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "14b4739b-d45c-4498-825b-d71cac19ae21" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185059Z:14b4739b-d45c-4498-825b-d71cac19ae21" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7bfc1ad8-54e4-4fe3-90c2-50638d566f54" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "e6c65e59-a739-4b9d-b07d-f21e565557fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185059Z:e6c65e59-a739-4b9d-b07d-f21e565557fa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:50:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "35466e79-c64c-4525-a528-fe3a23472c5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-correlation-request-id": [ + "53c3a264-6acd-465e-976e-b84b67dfa17b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185100Z:53c3a264-6acd-465e-976e-b84b67dfa17b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5718d647-48d5-415e-a92d-7155c8984dc9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "4fdc449c-2c97-4489-83c6-e244011b7855" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185100Z:4fdc449c-2c97-4489-83c6-e244011b7855" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e200b9d-348c-4054-b029-9c6703edde25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "b6f413e9-5688-4988-9824-10465317220f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185100Z:b6f413e9-5688-4988-9824-10465317220f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "37ee4be7-05a0-464a-80c2-8b46413252c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "0ce65499-0c23-4643-8ea9-26e22933e09d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185100Z:0ce65499-0c23-4643-8ea9-26e22933e09d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b13f48f9-29e1-4258-89cb-d51cc9c3f1d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "980a9c31-2646-4612-9930-363d6aae474d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185101Z:980a9c31-2646-4612-9930-363d6aae474d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b42123b5-f21a-4b70-87e1-c1c402435edf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14801" + ], + "x-ms-correlation-request-id": [ + "37a4698e-0448-4f7d-afa0-558422ad039b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185101Z:37a4698e-0448-4f7d-afa0-558422ad039b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cfa629ac-13e8-498e-8b50-2da4bca9cc31" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-correlation-request-id": [ + "9053d6fd-c480-445a-a87a-db979f957695" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185101Z:9053d6fd-c480-445a-a87a-db979f957695" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9f038353-8503-4f4e-bb82-c8fd3769271b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "e379706b-ed91-4e98-9dd0-f2143d3bc7a9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185101Z:e379706b-ed91-4e98-9dd0-f2143d3bc7a9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "85814aa1-b372-4c66-b895-02271d44b74b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14798" + ], + "x-ms-correlation-request-id": [ + "ac08bf6b-981e-45b5-958f-9be282aef17c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185101Z:ac08bf6b-981e-45b5-958f-9be282aef17c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0caa3bf9-b550-4d19-9603-e62025eda1a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" + ], + "x-ms-correlation-request-id": [ + "ba45f495-0cb8-45f0-a57d-2b51e0e233ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185102Z:ba45f495-0cb8-45f0-a57d-2b51e0e233ab" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c7a31648-2596-46ce-965c-32f59b9aefd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14796" + ], + "x-ms-correlation-request-id": [ + "822969a0-b3a9-428b-a30c-1a51e10a7e56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185102Z:822969a0-b3a9-428b-a30c-1a51e10a7e56" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ea6cc29e-ba0e-465c-b7bf-9db621b0f137" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14795" + ], + "x-ms-correlation-request-id": [ + "21b1db0e-ba9a-43de-b612-86e80844565b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185102Z:21b1db0e-ba9a-43de-b612-86e80844565b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "70d53812-0ea9-4796-b8f0-1759ec85e630" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" + ], + "x-ms-correlation-request-id": [ + "f99e8eb5-3589-46ad-b069-71c0dfc6ce22" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185102Z:f99e8eb5-3589-46ad-b069-71c0dfc6ce22" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f812144d-ea54-40be-b164-015272f2ac6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], + "x-ms-correlation-request-id": [ + "29045931-e76b-4704-a34e-ad25f19ac634" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185103Z:29045931-e76b-4704-a34e-ad25f19ac634" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a1c3e3a1-b73e-42b6-ab6e-a317ffc60286" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" + ], + "x-ms-correlation-request-id": [ + "c67bee14-3951-41c4-9102-c9fa31657209" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185103Z:c67bee14-3951-41c4-9102-c9fa31657209" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da136e2e-9427-401c-a3de-335b0213cc51" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "93183269-b5e2-4fe7-a965-f223d2be2aed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185103Z:93183269-b5e2-4fe7-a965-f223d2be2aed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9ec8eec8-01b3-4950-b0c2-abca68ea9f87" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "b1b51572-6402-48ab-a8c1-d82e28caca26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185103Z:b1b51572-6402-48ab-a8c1-d82e28caca26" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b995392c-3e89-4e33-abf3-1685d1c2b3be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" + ], + "x-ms-correlation-request-id": [ + "770e53e8-46aa-414c-886e-b508ec660aa3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185103Z:770e53e8-46aa-414c-886e-b508ec660aa3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4cfbe1b2-0f82-42a8-b67e-7af35dbe1786" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "d577029e-1339-412a-a9bc-95ccb7c1732f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185104Z:d577029e-1339-412a-a9bc-95ccb7c1732f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "80338d18-0dce-42f8-b2c4-11d2758c071b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "4428a135-ebdd-40fc-95c9-f679b8a7a8a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185104Z:4428a135-ebdd-40fc-95c9-f679b8a7a8a0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25c82816-2fc8-4c0f-aeb5-6b628b2e580f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" + ], + "x-ms-correlation-request-id": [ + "18913401-0b3a-413d-813e-2b22d49b1bb9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185104Z:18913401-0b3a-413d-813e-2b22d49b1bb9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6c9d4c2f-436b-4dcf-8895-82da03fda1c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "b1aa1fea-1235-4eb7-a042-639ce78e9e48" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185104Z:b1aa1fea-1235-4eb7-a042-639ce78e9e48" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9f09ca2b-df5b-4acf-8824-0cb6f773adac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], + "x-ms-correlation-request-id": [ + "67bd06e0-7154-4ac9-80d9-e0e30a1af863" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185105Z:67bd06e0-7154-4ac9-80d9-e0e30a1af863" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8904cd55-4c2a-41f7-b129-cb6e4a814a41" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14783" + ], + "x-ms-correlation-request-id": [ + "bd88eaea-c084-4700-9ac2-d330e64371e9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185105Z:bd88eaea-c084-4700-9ac2-d330e64371e9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "10a6f006-6281-4b70-8976-472a7d4a75dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "ce1acfbc-f1b2-4574-8188-d52dfe8aee77" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185105Z:ce1acfbc-f1b2-4574-8188-d52dfe8aee77" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d031625c-8568-40a2-aec7-8bcae4689207" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "8ea985ef-81b0-477c-b5b8-afd4a55b2a96" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185105Z:8ea985ef-81b0-477c-b5b8-afd4a55b2a96" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7b9f8722-e8d6-4c88-9d83-6573c8aa5fde" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "cddc6a82-9cb1-4fdb-85b2-04161d7ec8ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185106Z:cddc6a82-9cb1-4fdb-85b2-04161d7ec8ab" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "436b64f1-fbed-430d-9b3a-14a3dadd6a51" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "42ab7023-13dd-4f07-8777-1cb3a4f25c78" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185106Z:42ab7023-13dd-4f07-8777-1cb3a4f25c78" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2f1922c6-c379-4e72-8bf3-9f4eb26dafae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-correlation-request-id": [ + "3735405a-c4e5-4dff-9f4b-5b32e4b514f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185106Z:3735405a-c4e5-4dff-9f4b-5b32e4b514f0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bace33ad-ba70-4a94-8377-17dcb6b1ac20" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-correlation-request-id": [ + "669964b5-ef6f-4af2-af34-cea53d45ff1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185106Z:669964b5-ef6f-4af2-af34-cea53d45ff1b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "90f91494-1adc-4c18-aaff-1ab36fb19399" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-correlation-request-id": [ + "3e3e7060-2e9c-4dc3-a7be-84ef1ea2adac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185107Z:3e3e7060-2e9c-4dc3-a7be-84ef1ea2adac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "960fc4ab-d6b1-4d1b-8780-57071aedfffc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-correlation-request-id": [ + "a05b92eb-1d0b-4c4a-972a-9ec2210cf575" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185107Z:a05b92eb-1d0b-4c4a-972a-9ec2210cf575" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ffecd303-e19a-4f81-b21e-1df4cf997e55" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "b12322a4-1447-4591-8642-21d09478e642" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185107Z:b12322a4-1447-4591-8642-21d09478e642" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0624173f-2e2e-4988-944d-66a6daf70a6c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "ce07cc6d-b114-4b95-8205-dc077d0aa4ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185107Z:ce07cc6d-b114-4b95-8205-dc077d0aa4ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a0ae1908-1a9d-4af5-97c2-4eba6260e2fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-correlation-request-id": [ + "a32bb7c6-79a4-48c6-a20f-9363d27f7161" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185107Z:a32bb7c6-79a4-48c6-a20f-9363d27f7161" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74fead34-6cad-482f-bae5-fe5d2b41bff4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "e2d2bd2b-3e6c-40f6-8d16-6046c178a77e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185108Z:e2d2bd2b-3e6c-40f6-8d16-6046c178a77e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "08b83bb5-e5ee-4a4e-af9f-440e9a777ab2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "x-ms-correlation-request-id": [ + "bb0d2d8e-e991-4912-bb93-5e21e4fcb40e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185108Z:bb0d2d8e-e991-4912-bb93-5e21e4fcb40e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c34ae348-2929-4652-8ed5-52ad7b3389c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "9c494c09-6cf4-49d7-98ca-298fc5adb215" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185108Z:9c494c09-6cf4-49d7-98ca-298fc5adb215" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fccc827e-9602-4dc4-aff6-b235b1234a8c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-correlation-request-id": [ + "97017b84-771f-4129-87bd-11278583eb41" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185108Z:97017b84-771f-4129-87bd-11278583eb41" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e3f5cd5c-ea9a-40c7-b6e7-86f860ae4833" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "6cbff4fd-0cd1-44ba-8d9d-325e1bb8f485" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185109Z:6cbff4fd-0cd1-44ba-8d9d-325e1bb8f485" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "79fb43a2-f86f-4573-8180-2c5fbae3495d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-correlation-request-id": [ + "0251e703-4b77-4974-8db9-50bf245cdbb4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185109Z:0251e703-4b77-4974-8db9-50bf245cdbb4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "475cb67f-8599-42c0-bef9-a63dbd4e1443" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "5305f9b9-2ab3-4d1f-a0f7-6cd5448eaca0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185109Z:5305f9b9-2ab3-4d1f-a0f7-6cd5448eaca0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "42f340e3-833b-4090-8809-39341fffbbfd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-correlation-request-id": [ + "5038b400-4ce4-440a-adcf-49ffdb9977fc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185109Z:5038b400-4ce4-440a-adcf-49ffdb9977fc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48d760f5-b239-4ea4-9607-a79e48b4678a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "ecc0decf-2eb3-4ec0-b2a9-9008d3ca7f67" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185109Z:ecc0decf-2eb3-4ec0-b2a9-9008d3ca7f67" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "031ed631-9c18-4905-9191-9d847abfa287" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-correlation-request-id": [ + "dc7a1dd4-70bf-4ead-9d36-7b283de48640" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185110Z:dc7a1dd4-70bf-4ead-9d36-7b283de48640" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2f699d3b-b052-405c-80e3-14923589b737" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "b8cef7e5-ce0b-4de7-b5f9-bc9d11abe64a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185110Z:b8cef7e5-ce0b-4de7-b5f9-bc9d11abe64a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0041105c-ae3a-4db4-9fb1-902c6bfd3bb8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-correlation-request-id": [ + "a3a347bf-9939-4f66-bcf9-a951ac60fcb2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185110Z:a3a347bf-9939-4f66-bcf9-a951ac60fcb2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fa12a708-8836-4b32-9e55-1f734a3bdfab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" + ], + "x-ms-correlation-request-id": [ + "d84bb284-f3ed-44be-818c-30a41e89df3d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185110Z:d84bb284-f3ed-44be-818c-30a41e89df3d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "90a32853-bd89-4d77-9fe9-a03f5e63d26d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14758" + ], + "x-ms-correlation-request-id": [ + "c4fe7e87-c064-480d-9604-125c861cb2c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185111Z:c4fe7e87-c064-480d-9604-125c861cb2c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7224c124-21a9-4555-815d-200f5d36d80b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-correlation-request-id": [ + "8cfe2ce5-9b31-4966-bbca-99b6ba5b3d6e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185111Z:8cfe2ce5-9b31-4966-bbca-99b6ba5b3d6e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a3213be0-f688-4712-8c6c-3fa865e5123e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-correlation-request-id": [ + "44cc5ecf-b7d5-4950-a482-e1b0f907dd92" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185111Z:44cc5ecf-b7d5-4950-a482-e1b0f907dd92" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "43b7d739-a7cc-4093-af55-e7b2b0966e20" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" + ], + "x-ms-correlation-request-id": [ + "41a07f49-1e01-437a-a602-1a62e9ff38ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185111Z:41a07f49-1e01-437a-a602-1a62e9ff38ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bb1c8435-6c90-4d0f-9da7-cebdc3e3aab6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14754" + ], + "x-ms-correlation-request-id": [ + "7f46f45a-403c-4782-ba17-5e15f8161ab4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185111Z:7f46f45a-403c-4782-ba17-5e15f8161ab4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9bc36bab-e064-4f7a-85a6-4cfc3d7d8cbf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14753" + ], + "x-ms-correlation-request-id": [ + "00677b9e-fc1f-4107-922d-ba7191216b84" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185112Z:00677b9e-fc1f-4107-922d-ba7191216b84" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "750f73a3-12b5-4f78-b0b6-53506efcb002" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14752" + ], + "x-ms-correlation-request-id": [ + "b10f608d-c1c3-4671-9923-4301e64ab738" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185112Z:b10f608d-c1c3-4671-9923-4301e64ab738" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ff94bbbb-34ce-47c4-b8ea-4f0302647d1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14751" + ], + "x-ms-correlation-request-id": [ + "123d4625-dfb0-4cd8-8595-b9a1d6948d5a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185112Z:123d4625-dfb0-4cd8-8595-b9a1d6948d5a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4b8d32b5-6400-4ecd-8dff-2a4e04767aaf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14750" + ], + "x-ms-correlation-request-id": [ + "055aa31f-2cc5-4c51-b5c0-1f3f1c9e4b20" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185112Z:055aa31f-2cc5-4c51-b5c0-1f3f1c9e4b20" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "73f8cd3a-f743-4793-a35a-f1e9f8f73d11" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14749" + ], + "x-ms-correlation-request-id": [ + "22be3fc3-96d5-40c0-9816-077ab62d1336" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185113Z:22be3fc3-96d5-40c0-9816-077ab62d1336" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a1bd58c3-ace1-446a-9869-5b171e8d1a7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14748" + ], + "x-ms-correlation-request-id": [ + "00ac1d17-378c-496b-8e08-dfc27b7ae917" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185113Z:00ac1d17-378c-496b-8e08-dfc27b7ae917" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a8a98aa8-2bd6-48a0-b989-7ccca2496e7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14747" + ], + "x-ms-correlation-request-id": [ + "888a0a96-12a9-4e30-b1b4-6e8b8259664a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185113Z:888a0a96-12a9-4e30-b1b4-6e8b8259664a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf8fc892-1cf3-4c0a-afe1-55fa03104ed2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14746" + ], + "x-ms-correlation-request-id": [ + "8c178cbd-75a6-4cca-b3bf-e72d16a85845" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185113Z:8c178cbd-75a6-4cca-b3bf-e72d16a85845" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a4be7699-e0d4-4b13-b08a-d0834dbf2a26" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14745" + ], + "x-ms-correlation-request-id": [ + "abcef455-dfba-4e2d-a1ca-10001a453448" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185113Z:abcef455-dfba-4e2d-a1ca-10001a453448" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "90481441-0ffd-4776-8db6-76c6f50136da" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14744" + ], + "x-ms-correlation-request-id": [ + "6938a49e-d4b8-47e0-b426-398d1ee5ca36" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185114Z:6938a49e-d4b8-47e0-b426-398d1ee5ca36" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dca9e3fb-fa76-45f3-b652-73ac4f36190e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14743" + ], + "x-ms-correlation-request-id": [ + "fcc2054a-c619-4632-84cd-cf0881aff27f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185114Z:fcc2054a-c619-4632-84cd-cf0881aff27f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b4ee80eb-56a3-4bc5-8962-d40315e4155d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14742" + ], + "x-ms-correlation-request-id": [ + "b6df74dc-f4bf-46a4-96e6-7285a84227ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185114Z:b6df74dc-f4bf-46a4-96e6-7285a84227ad" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ab8af50-3612-4f8e-be33-3702b831aaad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14741" + ], + "x-ms-correlation-request-id": [ + "210ff732-65a6-4d1d-a789-00015b84f758" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185114Z:210ff732-65a6-4d1d-a789-00015b84f758" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8631af43-cd53-4634-94ce-69189984084d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14740" + ], + "x-ms-correlation-request-id": [ + "d11b4ba5-7b45-47ca-84be-2316f7420122" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185115Z:d11b4ba5-7b45-47ca-84be-2316f7420122" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fb2c7a3b-4a47-4316-8b9a-e12748ec8423" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14739" + ], + "x-ms-correlation-request-id": [ + "d6414ad6-81af-4865-acd9-18d0e9d56755" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185115Z:d6414ad6-81af-4865-acd9-18d0e9d56755" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9d3bec2c-e77d-496b-a960-8cd7848f9ac4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14738" + ], + "x-ms-correlation-request-id": [ + "a1e55b0b-28e3-4c26-8a05-51c2b0ffb722" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185115Z:a1e55b0b-28e3-4c26-8a05-51c2b0ffb722" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4730d026-ac1f-40b9-807d-ab34d0e34104" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14737" + ], + "x-ms-correlation-request-id": [ + "1c4a0584-cdda-4c98-b4b1-5cbcd094d903" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185115Z:1c4a0584-cdda-4c98-b4b1-5cbcd094d903" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c4011cc2-fe44-475f-b91e-4dbcf2a05d4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14736" + ], + "x-ms-correlation-request-id": [ + "83f6e572-942e-48a6-8dcf-beb46b91a0ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185116Z:83f6e572-942e-48a6-8dcf-beb46b91a0ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2eb94d22-bfb0-4875-8067-b9f82c1bdf23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14735" + ], + "x-ms-correlation-request-id": [ + "9901c04f-cd89-4a52-8556-5080f627ccb9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185116Z:9901c04f-cd89-4a52-8556-5080f627ccb9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "55234555-552b-4878-8088-e15018090e74" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14734" + ], + "x-ms-correlation-request-id": [ + "50221efd-649a-45c6-94c2-a3be3d21502f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185116Z:50221efd-649a-45c6-94c2-a3be3d21502f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5496d14-93f1-4679-99f2-e302a919b8f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14733" + ], + "x-ms-correlation-request-id": [ + "bd173d18-1be3-4372-b4d3-63273704ed02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185116Z:bd173d18-1be3-4372-b4d3-63273704ed02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "73a0ad76-dd87-4523-b2dc-686d2e8fe294" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14732" + ], + "x-ms-correlation-request-id": [ + "e26a2e32-3c17-4c84-b788-baf3b4284ca6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185116Z:e26a2e32-3c17-4c84-b788-baf3b4284ca6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "158b365b-c80a-42df-8fac-aec2bec71723" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14731" + ], + "x-ms-correlation-request-id": [ + "4fadecb3-4b9c-4ca3-8b5c-2dc504d5e832" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185117Z:4fadecb3-4b9c-4ca3-8b5c-2dc504d5e832" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "11dcfd0e-627c-42c7-a4ed-4af6a990fb44" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14730" + ], + "x-ms-correlation-request-id": [ + "12bd5ba5-1ae2-4064-a76a-56c0e7feaa61" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185117Z:12bd5ba5-1ae2-4064-a76a-56c0e7feaa61" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1d58d9c4-b722-4d16-afff-ba59991a1d44" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14729" + ], + "x-ms-correlation-request-id": [ + "795bf848-bd6b-46f4-82dc-88715c66c53c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185117Z:795bf848-bd6b-46f4-82dc-88715c66c53c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d74018a-ddd4-4a19-a05d-96806d16153d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14728" + ], + "x-ms-correlation-request-id": [ + "569ac32d-bc56-4d57-a1ee-e00cc6302e94" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185117Z:569ac32d-bc56-4d57-a1ee-e00cc6302e94" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a816cca3-e5f0-4d4a-bfb3-918b285d74cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14727" + ], + "x-ms-correlation-request-id": [ + "7a1afa09-6502-4e51-8a74-5613798b8836" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185118Z:7a1afa09-6502-4e51-8a74-5613798b8836" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "57c5752a-cd32-4812-b4e1-047bac23ac35" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14726" + ], + "x-ms-correlation-request-id": [ + "dcc5f685-d59b-49a6-b6b7-8821038ccd1d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185118Z:dcc5f685-d59b-49a6-b6b7-8821038ccd1d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e5a2fd23-22fb-40e6-bcb0-b6095d46d9ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14725" + ], + "x-ms-correlation-request-id": [ + "02f0dbfb-bd16-4bee-9bfb-56c397471d4f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185118Z:02f0dbfb-bd16-4bee-9bfb-56c397471d4f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "40e243d8-f494-4bd6-84c4-310c33e57aef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14724" + ], + "x-ms-correlation-request-id": [ + "96bc3674-ec33-4083-be7c-e93e7964bf1e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185118Z:96bc3674-ec33-4083-be7c-e93e7964bf1e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b8176429-d6c1-46bb-a874-9a5f216eff20" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14723" + ], + "x-ms-correlation-request-id": [ + "b1f904a0-a2bf-4790-b4c1-b51e2db5cea6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185118Z:b1f904a0-a2bf-4790-b4c1-b51e2db5cea6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bf0458d2-c9fe-4501-b3b8-1fecb51a7b15" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14722" + ], + "x-ms-correlation-request-id": [ + "2cb81f38-3b57-481c-981d-d8bafb20101b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185119Z:2cb81f38-3b57-481c-981d-d8bafb20101b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "69cd3626-0fa8-4593-90ad-6430a59d40eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14721" + ], + "x-ms-correlation-request-id": [ + "9cc8e41c-f6a2-4157-ab67-7528b4292bbc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185119Z:9cc8e41c-f6a2-4157-ab67-7528b4292bbc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ac798c4-2a5b-49f5-b48d-ba735c2ecb34" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14720" + ], + "x-ms-correlation-request-id": [ + "e3f9876d-c0cf-4001-8b69-4aad76569e34" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185119Z:e3f9876d-c0cf-4001-8b69-4aad76569e34" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8711c744-dbb4-4ef4-887a-e3a14b273eea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14719" + ], + "x-ms-correlation-request-id": [ + "1a4f723e-0f08-44d1-806f-0a9e00078fd7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185119Z:1a4f723e-0f08-44d1-806f-0a9e00078fd7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a8d2016e-8975-4f8f-bfe7-27bd9a2e0287" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14718" + ], + "x-ms-correlation-request-id": [ + "72ccda5c-b071-4afa-8c45-3d0c27f0a859" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185120Z:72ccda5c-b071-4afa-8c45-3d0c27f0a859" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8f07d075-f817-4c8f-b0a6-e58d53d9efe2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14717" + ], + "x-ms-correlation-request-id": [ + "b35c79d1-a972-4e92-b182-cabb3563dde4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185120Z:b35c79d1-a972-4e92-b182-cabb3563dde4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e9e0c10-a645-4b2f-baf6-7179440d6f8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14716" + ], + "x-ms-correlation-request-id": [ + "789fa586-cc80-4eb3-975e-e00bdeb4b69b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185120Z:789fa586-cc80-4eb3-975e-e00bdeb4b69b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a04bd7d3-5570-40a1-8fa5-a02425adc74f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14715" + ], + "x-ms-correlation-request-id": [ + "75699c0a-663d-4c62-90f9-6ab9997aa8d4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185120Z:75699c0a-663d-4c62-90f9-6ab9997aa8d4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b662b6b2-8c5a-4f73-b95b-f692dda839f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14714" + ], + "x-ms-correlation-request-id": [ + "fc99d76f-2546-4aac-8e74-500c6afd5e26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185120Z:fc99d76f-2546-4aac-8e74-500c6afd5e26" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4ed38075-e10c-43a1-8253-0f664ffb10c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14713" + ], + "x-ms-correlation-request-id": [ + "008c800a-2670-44ee-b413-9d8fda2820d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185121Z:008c800a-2670-44ee-b413-9d8fda2820d0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "444ddf74-4741-4e63-bc83-1fb8ea44450a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14712" + ], + "x-ms-correlation-request-id": [ + "4087d16a-a07a-44c9-8988-2cb3c3060975" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185121Z:4087d16a-a07a-44c9-8988-2cb3c3060975" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7ab1aece-8980-431b-96e3-a434b943f1e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14711" + ], + "x-ms-correlation-request-id": [ + "5c20e663-21bb-4b35-b2b5-541d9e7d0676" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185121Z:5c20e663-21bb-4b35-b2b5-541d9e7d0676" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "577dbe17-af83-4c18-bacc-91601c581949" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14710" + ], + "x-ms-correlation-request-id": [ + "6929d15a-1e1c-4557-815b-1bf00c357969" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185121Z:6929d15a-1e1c-4557-815b-1bf00c357969" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7b343047-9a8e-4883-860c-799fb0ab98ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14709" + ], + "x-ms-correlation-request-id": [ + "00a5584b-a117-4c5b-9ba4-27bcff05a592" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185121Z:00a5584b-a117-4c5b-9ba4-27bcff05a592" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "18500433-06b5-4635-95ee-c63c75b06cf4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14708" + ], + "x-ms-correlation-request-id": [ + "6b14514b-1669-4517-a10d-2fa7e7aaaa56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185122Z:6b14514b-1669-4517-a10d-2fa7e7aaaa56" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "686c2701-7e8c-487f-8ae5-85d089c52ce1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14707" + ], + "x-ms-correlation-request-id": [ + "5e47fa75-dd32-474e-8d92-a12b552c075e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185122Z:5e47fa75-dd32-474e-8d92-a12b552c075e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "85263066-34a3-469f-9b26-b1243229b9ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14706" + ], + "x-ms-correlation-request-id": [ + "d236d7b3-263c-4eb6-9732-cf0ab3ef66a9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185122Z:d236d7b3-263c-4eb6-9732-cf0ab3ef66a9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c3ccd026-e283-4231-8dd7-6cf8f3569f39" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14705" + ], + "x-ms-correlation-request-id": [ + "e537093b-bec2-4b25-9633-6e0937e31c05" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185122Z:e537093b-bec2-4b25-9633-6e0937e31c05" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "848a2719-0838-4a73-aa8c-5bccb8995c9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14704" + ], + "x-ms-correlation-request-id": [ + "10058b37-0d61-4766-89e7-f38e9097f025" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185123Z:10058b37-0d61-4766-89e7-f38e9097f025" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "efe85d9d-834c-45cb-94e8-d8913bdc5059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14703" + ], + "x-ms-correlation-request-id": [ + "68915862-f96c-48cf-a76f-3eee95f01539" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185123Z:68915862-f96c-48cf-a76f-3eee95f01539" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d55d629b-7083-4585-a58e-21f452587800" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14702" + ], + "x-ms-correlation-request-id": [ + "45bdab4a-ee9a-4fd7-b7fd-32c987904310" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185123Z:45bdab4a-ee9a-4fd7-b7fd-32c987904310" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eebb88fe-7ee9-428e-a408-09d7731146bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14701" + ], + "x-ms-correlation-request-id": [ + "d4c86c58-e6e4-469e-aefe-508a6c8d4e3e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185123Z:d4c86c58-e6e4-469e-aefe-508a6c8d4e3e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e298d945-29f3-448f-ac98-83bc5055b853" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14700" + ], + "x-ms-correlation-request-id": [ + "355a61c3-ff39-4992-9f9e-5265efe96581" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185124Z:355a61c3-ff39-4992-9f9e-5265efe96581" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c8b2be88-925f-44db-99ee-77ac33858324" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14699" + ], + "x-ms-correlation-request-id": [ + "e162c3d3-380a-42b3-8993-c29485645853" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185124Z:e162c3d3-380a-42b3-8993-c29485645853" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5cd5bd2f-0e13-43df-bd1d-7830b01269f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14698" + ], + "x-ms-correlation-request-id": [ + "ea4eadc6-fd01-4884-8657-c1316c15bd49" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185124Z:ea4eadc6-fd01-4884-8657-c1316c15bd49" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "60687f62-e896-4443-a591-d6297e5b41b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14697" + ], + "x-ms-correlation-request-id": [ + "f815d6a7-62df-4afe-a37b-5dcec6bfdd02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185124Z:f815d6a7-62df-4afe-a37b-5dcec6bfdd02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e18297ca-e3bf-4ce6-a854-fba912b4b23f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14696" + ], + "x-ms-correlation-request-id": [ + "759e1d49-2752-4877-8032-bf9eb219f3bf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185124Z:759e1d49-2752-4877-8032-bf9eb219f3bf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1df3bc63-1345-44bb-b2a2-e7afe3ce9a64" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14695" + ], + "x-ms-correlation-request-id": [ + "5b9d4202-8495-43ab-97fe-302fa335d27d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185125Z:5b9d4202-8495-43ab-97fe-302fa335d27d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e111fe5-88a8-4bfd-bf69-229c578979a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14694" + ], + "x-ms-correlation-request-id": [ + "f4c21431-4903-49a6-bee0-b7646f082800" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185125Z:f4c21431-4903-49a6-bee0-b7646f082800" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d4e6e197-5661-49b0-a781-6455968b328a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14693" + ], + "x-ms-correlation-request-id": [ + "8e93c697-2600-4738-a66d-d79d40a02704" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185125Z:8e93c697-2600-4738-a66d-d79d40a02704" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9368ada-e4bd-48c5-b0d5-0f38323ad4fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14692" + ], + "x-ms-correlation-request-id": [ + "00f1eb26-2991-4545-bb32-81205b53dbfc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185125Z:00f1eb26-2991-4545-bb32-81205b53dbfc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5c8522ac-73ef-4b3e-aeb1-2a03f62361ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14691" + ], + "x-ms-correlation-request-id": [ + "18a91626-e272-4e8f-91d2-11a90d1619be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185126Z:18a91626-e272-4e8f-91d2-11a90d1619be" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "610a708f-778e-48e3-9f9a-2d283adb06c1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14690" + ], + "x-ms-correlation-request-id": [ + "b2ee125b-95ca-497f-bfb7-3c102f8a4361" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185126Z:b2ee125b-95ca-497f-bfb7-3c102f8a4361" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "60527630-4fc8-4055-ac5a-b222f0312cf6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14689" + ], + "x-ms-correlation-request-id": [ + "b2640978-8a80-4d41-bfc2-c373a3400ec6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185126Z:b2640978-8a80-4d41-bfc2-c373a3400ec6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c5eb7f65-cd8d-4f07-8595-5f17b52b7366" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14688" + ], + "x-ms-correlation-request-id": [ + "6b22f495-d3cd-4e64-824b-817968880b1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185126Z:6b22f495-d3cd-4e64-824b-817968880b1c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "83be7e9f-83bb-43bf-a333-b88db03ff6ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14687" + ], + "x-ms-correlation-request-id": [ + "0fbf4251-e51c-443e-8031-d7942b030945" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185126Z:0fbf4251-e51c-443e-8031-d7942b030945" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c69fe5b7-f1eb-4c05-b9e0-19e4b0582d28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14686" + ], + "x-ms-correlation-request-id": [ + "3307434f-614b-4414-9231-8fa623196b87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185127Z:3307434f-614b-4414-9231-8fa623196b87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44859ec1-f00d-4f76-afcb-359d490a7ea6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14685" + ], + "x-ms-correlation-request-id": [ + "5566daa2-2cda-4e80-bf9d-a9d5834fbdf0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185127Z:5566daa2-2cda-4e80-bf9d-a9d5834fbdf0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3262d657-a4ed-4d08-8c8e-08480d41d5e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14684" + ], + "x-ms-correlation-request-id": [ + "2db659bc-a550-44d1-8313-f80c7de8327a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185127Z:2db659bc-a550-44d1-8313-f80c7de8327a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a8ddafd9-7370-466e-bcda-68e7176b74a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14683" + ], + "x-ms-correlation-request-id": [ + "2eab21dc-767d-47f0-965b-d215718baaee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185127Z:2eab21dc-767d-47f0-965b-d215718baaee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7bcaa8a9-7810-42df-8790-947300e90914" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14682" + ], + "x-ms-correlation-request-id": [ + "fb3fb7c2-a92a-44f7-86ba-b6b14820efd3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185128Z:fb3fb7c2-a92a-44f7-86ba-b6b14820efd3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "66a63c5c-c578-4d5c-b254-2c8dc10d28d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14681" + ], + "x-ms-correlation-request-id": [ + "f7be77fe-13d7-41bb-909c-29abe1d43b93" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185128Z:f7be77fe-13d7-41bb-909c-29abe1d43b93" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "41ece889-e51f-487f-8776-87dfb2e3f39e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14680" + ], + "x-ms-correlation-request-id": [ + "3c57cc3a-4fc1-49ed-a0bc-27012d2d1413" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185128Z:3c57cc3a-4fc1-49ed-a0bc-27012d2d1413" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d5ff7bc5-db1c-4cc6-9b65-076bb192c47c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14679" + ], + "x-ms-correlation-request-id": [ + "3f414993-118c-4630-bb1e-30c2f9eae401" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185128Z:3f414993-118c-4630-bb1e-30c2f9eae401" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "39f76df1-8d28-474d-93fc-48cfa82e4f57" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14678" + ], + "x-ms-correlation-request-id": [ + "c3d655bd-1115-4e5e-8873-dc259b743a74" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185128Z:c3d655bd-1115-4e5e-8873-dc259b743a74" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bb80ec64-db26-48ce-b5b6-e7722458c42e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14677" + ], + "x-ms-correlation-request-id": [ + "4145fab0-8877-4bb3-9abf-c5a652a20c61" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185129Z:4145fab0-8877-4bb3-9abf-c5a652a20c61" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "47ad0778-9574-4f7f-b993-1125c4091285" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14676" + ], + "x-ms-correlation-request-id": [ + "ff9bb884-d761-422c-9bf7-ffe89ce68d8e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185129Z:ff9bb884-d761-422c-9bf7-ffe89ce68d8e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cc38c489-d9b7-4b08-9577-de3b7b9ced95" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14675" + ], + "x-ms-correlation-request-id": [ + "58295920-2e7f-4581-bded-1e8b107aee18" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185129Z:58295920-2e7f-4581-bded-1e8b107aee18" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5c5a0140-b8aa-4eff-ae23-031042913b59" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14674" + ], + "x-ms-correlation-request-id": [ + "3e811d1d-2d6d-456b-ac94-35b0dcfaf343" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185129Z:3e811d1d-2d6d-456b-ac94-35b0dcfaf343" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f0b682ab-afd6-4e61-b5fb-af79a1ae61b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14673" + ], + "x-ms-correlation-request-id": [ + "35dc75b4-ba38-40bf-b4c6-d7a0149b3085" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185129Z:35dc75b4-ba38-40bf-b4c6-d7a0149b3085" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "32f46fdb-93f0-4367-9326-d4800a192745" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14672" + ], + "x-ms-correlation-request-id": [ + "3e5a8914-720d-42ad-89fb-33a791a24664" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185130Z:3e5a8914-720d-42ad-89fb-33a791a24664" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f31defbb-8959-412a-a886-3ede0f946b55" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14671" + ], + "x-ms-correlation-request-id": [ + "63a5527f-6fe5-4a61-bb02-df49d988a313" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185130Z:63a5527f-6fe5-4a61-bb02-df49d988a313" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fc81bfd0-9cb3-46d6-98ba-b5c23e0a1adf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14670" + ], + "x-ms-correlation-request-id": [ + "d0a738ae-2185-487c-8d5b-80c76d90caba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185130Z:d0a738ae-2185-487c-8d5b-80c76d90caba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "78b340f6-55c8-468a-84aa-e664f9eab9aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14669" + ], + "x-ms-correlation-request-id": [ + "2d10e689-c4ad-40ae-a577-cae37f11c80f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185130Z:2d10e689-c4ad-40ae-a577-cae37f11c80f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "61d72d71-f085-46d5-8396-3bfd0283a938" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14668" + ], + "x-ms-correlation-request-id": [ + "ce5973f1-8177-436e-bb66-a285b5f509d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185131Z:ce5973f1-8177-436e-bb66-a285b5f509d6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bc678601-e943-4fac-aea6-6311e14ff257" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14667" + ], + "x-ms-correlation-request-id": [ + "c4b99c64-83de-424c-b83e-4129560d7571" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185131Z:c4b99c64-83de-424c-b83e-4129560d7571" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "930ed78b-d5d1-4b8e-b319-61576638239f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14666" + ], + "x-ms-correlation-request-id": [ + "fced4c48-b42d-4105-86bd-df43f6b73b05" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185131Z:fced4c48-b42d-4105-86bd-df43f6b73b05" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b5d37978-5554-4b21-b461-551aecf96d38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14665" + ], + "x-ms-correlation-request-id": [ + "f172427d-07c6-43a7-9d4c-dcc563756ed2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185131Z:f172427d-07c6-43a7-9d4c-dcc563756ed2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0c0b506a-14d1-43bd-8450-9dcf8ce81c45" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14664" + ], + "x-ms-correlation-request-id": [ + "e1b89070-f2f1-49ec-a94c-7767deb46143" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185132Z:e1b89070-f2f1-49ec-a94c-7767deb46143" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8eac11db-5d43-4355-99aa-9bc1ddb16d79" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14663" + ], + "x-ms-correlation-request-id": [ + "f44e99ec-8091-4c1f-87ce-3d314fdab211" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185132Z:f44e99ec-8091-4c1f-87ce-3d314fdab211" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "82f96f7d-e4b3-4df3-92c8-7df6a316d4bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14662" + ], + "x-ms-correlation-request-id": [ + "13b00ba8-ce09-48a4-8710-8197e590e086" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185132Z:13b00ba8-ce09-48a4-8710-8197e590e086" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "704531f5-f734-413f-b5de-6520540441aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14661" + ], + "x-ms-correlation-request-id": [ + "05265896-3a10-441e-b3cd-0b3b727d64ea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185132Z:05265896-3a10-441e-b3cd-0b3b727d64ea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "07f3928a-2d01-4ffd-b5ad-de1a4cf80868" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14660" + ], + "x-ms-correlation-request-id": [ + "f5667574-0963-4c42-98d1-fcbc2226c08a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185132Z:f5667574-0963-4c42-98d1-fcbc2226c08a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2730e3b2-74a4-4d61-8f2c-3ab1d517974e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14659" + ], + "x-ms-correlation-request-id": [ + "3918e0f0-ce18-435c-80e6-7fb4bd875370" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185133Z:3918e0f0-ce18-435c-80e6-7fb4bd875370" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "87196f47-3812-4ce3-a0d8-54650718c157" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14658" + ], + "x-ms-correlation-request-id": [ + "87a84879-b72b-42ff-9b25-095799fbb73a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185133Z:87a84879-b72b-42ff-9b25-095799fbb73a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3db9cf74-61e3-474d-bf93-35258c70a82c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14657" + ], + "x-ms-correlation-request-id": [ + "525887ce-540b-48d4-8ac9-0664cfcb1e01" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185133Z:525887ce-540b-48d4-8ac9-0664cfcb1e01" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c5870fc-03c1-4a31-b52e-5a99e581a04c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14656" + ], + "x-ms-correlation-request-id": [ + "8935217e-c8dc-4425-9298-6ee8b112896a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185133Z:8935217e-c8dc-4425-9298-6ee8b112896a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8689f161-7a01-42fe-a9c9-465a2edbfd18" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14655" + ], + "x-ms-correlation-request-id": [ + "d2cfaf65-e281-4085-ac9a-36abeffbcdd9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185133Z:d2cfaf65-e281-4085-ac9a-36abeffbcdd9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44da6455-39c5-4864-81ab-0a5b1ee89da7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14654" + ], + "x-ms-correlation-request-id": [ + "7cf290d3-3dda-44f5-afbb-8bfe85e5f037" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185134Z:7cf290d3-3dda-44f5-afbb-8bfe85e5f037" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "006daa7f-2225-4b01-a2a8-e4b9c0ba38a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14653" + ], + "x-ms-correlation-request-id": [ + "1b8593d3-6de5-471e-b33c-5e08cccfc23d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185134Z:1b8593d3-6de5-471e-b33c-5e08cccfc23d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "51a2bd0c-da7a-4d7d-993f-8ae345e96cc8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14652" + ], + "x-ms-correlation-request-id": [ + "44932a81-0859-4fff-81c9-cb29656a4d7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185134Z:44932a81-0859-4fff-81c9-cb29656a4d7d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b0f1d347-7c71-49a3-91fa-e6d64086e976" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14651" + ], + "x-ms-correlation-request-id": [ + "f4faa198-b9db-4424-b18f-92c841378d70" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185134Z:f4faa198-b9db-4424-b18f-92c841378d70" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6378171f-de17-4abf-8a91-a7c4b337422a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14650" + ], + "x-ms-correlation-request-id": [ + "d3a25256-de1f-4a17-90fc-6279ea030fe9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185135Z:d3a25256-de1f-4a17-90fc-6279ea030fe9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6771458b-286f-4320-8f72-892e8117954a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14649" + ], + "x-ms-correlation-request-id": [ + "9d0c2828-bd99-4fe4-a71e-1712a53df22c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185135Z:9d0c2828-bd99-4fe4-a71e-1712a53df22c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2e3d8b7c-53c9-4cf0-a11c-8cb2f5b9a30d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14648" + ], + "x-ms-correlation-request-id": [ + "5fce7db7-3d57-4132-a158-124163e81e1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185135Z:5fce7db7-3d57-4132-a158-124163e81e1b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5a1446d5-1642-477f-b42e-caefdf50a465" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14647" + ], + "x-ms-correlation-request-id": [ + "2b7ca22a-f6ca-4e40-9a69-c7fe97be67a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185135Z:2b7ca22a-f6ca-4e40-9a69-c7fe97be67a3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6ba1e745-cbe0-4e27-98ce-f222915ab5c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14646" + ], + "x-ms-correlation-request-id": [ + "e52dd898-00dc-4a5c-a7ac-9d564a39eebf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185135Z:e52dd898-00dc-4a5c-a7ac-9d564a39eebf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aaeb206c-8455-49f9-bb01-68cd9c356cc8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14645" + ], + "x-ms-correlation-request-id": [ + "31404c12-5ed5-4344-a8cb-b172ead04fbc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185136Z:31404c12-5ed5-4344-a8cb-b172ead04fbc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f38f1ce1-2c22-4607-b16d-096a400d91d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14644" + ], + "x-ms-correlation-request-id": [ + "9db5303c-b3f8-4159-88ac-a5ad0ebcbcc4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185136Z:9db5303c-b3f8-4159-88ac-a5ad0ebcbcc4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "90eeae64-41b0-4250-8652-01e51602ff56" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14643" + ], + "x-ms-correlation-request-id": [ + "3e25cc54-7816-4cd5-9700-93a1802b16e6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185136Z:3e25cc54-7816-4cd5-9700-93a1802b16e6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4798dd81-5c04-4cec-9c35-de3d56775b4d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14642" + ], + "x-ms-correlation-request-id": [ + "e0f0f7ef-b1e2-41ee-b604-5cd2076658de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185136Z:e0f0f7ef-b1e2-41ee-b604-5cd2076658de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "17e3a85e-ba25-4817-b684-a468d6ada090" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14641" + ], + "x-ms-correlation-request-id": [ + "671f0e2c-4e3b-4d52-b974-75c455f6b009" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185137Z:671f0e2c-4e3b-4d52-b974-75c455f6b009" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fbfef62d-6cf6-4bcc-8ecd-17efffd9c483" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14640" + ], + "x-ms-correlation-request-id": [ + "866ddec7-a047-4a8e-a092-fa2481e2fb36" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185137Z:866ddec7-a047-4a8e-a092-fa2481e2fb36" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "90285a64-3600-4a94-a56c-cbb91632fc03" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14639" + ], + "x-ms-correlation-request-id": [ + "20f7ff2a-d441-4c0d-b682-d572617dfef8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185137Z:20f7ff2a-d441-4c0d-b682-d572617dfef8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8990f93b-8007-4ebb-bda3-cc277824483b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14638" + ], + "x-ms-correlation-request-id": [ + "654d2cb5-11aa-490b-903f-52a59aa695a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185137Z:654d2cb5-11aa-490b-903f-52a59aa695a2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2e2d619c-addf-42d5-ae65-a31e154d42b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14637" + ], + "x-ms-correlation-request-id": [ + "f7ba240c-91bb-44c5-8fa8-6827e3b4353b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185138Z:f7ba240c-91bb-44c5-8fa8-6827e3b4353b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b4634d9b-6f43-4d63-8471-86371435ef81" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14636" + ], + "x-ms-correlation-request-id": [ + "a03d5ff1-6f16-467e-9196-d2944ec5b254" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185138Z:a03d5ff1-6f16-467e-9196-d2944ec5b254" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9c80e5ff-2f8b-4ee4-95ef-0c519fd861f8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14635" + ], + "x-ms-correlation-request-id": [ + "d5b59ca5-9d7b-46bd-87d0-e5da78045052" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185138Z:d5b59ca5-9d7b-46bd-87d0-e5da78045052" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "65699eea-a98d-46ca-9b62-a5f4ec351540" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14634" + ], + "x-ms-correlation-request-id": [ + "a674bb4f-b8cb-4e24-87e4-7fc7dcb0fa99" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185138Z:a674bb4f-b8cb-4e24-87e4-7fc7dcb0fa99" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ca65d31-6984-4c2f-8a62-663dfc471ca8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14633" + ], + "x-ms-correlation-request-id": [ + "0ce9b596-fd2b-4b63-8c13-646bb4189230" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185138Z:0ce9b596-fd2b-4b63-8c13-646bb4189230" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "89ed4818-fd27-44f0-89ff-35a5b9559745" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14632" + ], + "x-ms-correlation-request-id": [ + "bfb428b2-334d-478c-a81a-941fee4b6199" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185139Z:bfb428b2-334d-478c-a81a-941fee4b6199" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4e2042d7-a67f-448c-9c62-185189b48d91" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14631" + ], + "x-ms-correlation-request-id": [ + "a5aa96c5-712f-4211-aac5-a7ab7b0cfa04" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185139Z:a5aa96c5-712f-4211-aac5-a7ab7b0cfa04" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ab2e61f-6092-4c59-bbe7-4f508d241ef6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14630" + ], + "x-ms-correlation-request-id": [ + "f5b33ea5-2081-4133-ad34-ce6a6e4a9e5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185139Z:f5b33ea5-2081-4133-ad34-ce6a6e4a9e5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f63d5d60-ef99-4e45-8c92-578c900706e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14629" + ], + "x-ms-correlation-request-id": [ + "c8f335f6-ba76-4ab6-8fad-cdc9465feea4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185139Z:c8f335f6-ba76-4ab6-8fad-cdc9465feea4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ccf9b34c-85ad-431d-a395-299a678d26e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14628" + ], + "x-ms-correlation-request-id": [ + "9e989b6b-d4a3-4d65-8883-4f238722f7a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185139Z:9e989b6b-d4a3-4d65-8883-4f238722f7a2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4bc3f6ba-a067-47cc-b843-d4b46e75effe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14627" + ], + "x-ms-correlation-request-id": [ + "19519ef5-a88d-476e-8037-b483c3c7c57a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185140Z:19519ef5-a88d-476e-8037-b483c3c7c57a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e663edc0-5c1d-4518-919e-2c164a800907" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14626" + ], + "x-ms-correlation-request-id": [ + "140529d5-ab81-45f3-9f75-e52e2ab89f09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185140Z:140529d5-ab81-45f3-9f75-e52e2ab89f09" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4295a12a-017c-4da5-8566-30aae4aedc9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14625" + ], + "x-ms-correlation-request-id": [ + "9e413526-c294-4452-9a31-d6b5f972e940" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185140Z:9e413526-c294-4452-9a31-d6b5f972e940" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f605b933-248b-4b7b-8b4c-4348626c76c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14624" + ], + "x-ms-correlation-request-id": [ + "a302fc84-6eeb-4167-aedf-90f425e53543" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185140Z:a302fc84-6eeb-4167-aedf-90f425e53543" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9095d5c8-6c63-463c-8d4c-eacb2f3b1bb6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14623" + ], + "x-ms-correlation-request-id": [ + "1aa8b527-ffdf-4af1-884f-37f65eb8d7a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185141Z:1aa8b527-ffdf-4af1-884f-37f65eb8d7a8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6648a649-2145-44aa-9299-f55813ef1713" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14622" + ], + "x-ms-correlation-request-id": [ + "93a1ca28-1c66-4290-99dd-c166d1852f87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185141Z:93a1ca28-1c66-4290-99dd-c166d1852f87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5f760fc-382a-4167-9cf0-5fd7a76f6327" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14621" + ], + "x-ms-correlation-request-id": [ + "43e74b64-d915-42e0-b055-d3f2ce98fb93" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185141Z:43e74b64-d915-42e0-b055-d3f2ce98fb93" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1bf2d0b7-6b2c-43fe-b8ad-fa410bf3b606" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14620" + ], + "x-ms-correlation-request-id": [ + "a336b21c-d759-4efd-9ae4-fb51214b2fe5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185141Z:a336b21c-d759-4efd-9ae4-fb51214b2fe5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ef2163e2-6337-4e30-a405-ee7d923f9545" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14619" + ], + "x-ms-correlation-request-id": [ + "88dc528c-cf85-473f-9909-73baad0ea01d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185142Z:88dc528c-cf85-473f-9909-73baad0ea01d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8cef51ae-66e5-449c-9249-a8514ba4574f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14618" + ], + "x-ms-correlation-request-id": [ + "0c0d73c2-d952-4bbb-8539-6011eb571f31" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185142Z:0c0d73c2-d952-4bbb-8539-6011eb571f31" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fea1d919-5985-42fa-a06d-82f5a8881786" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14617" + ], + "x-ms-correlation-request-id": [ + "31b2cea4-c6d5-480f-9777-9ce88af35f5c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185142Z:31b2cea4-c6d5-480f-9777-9ce88af35f5c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "471e036a-3131-4f50-9704-35985ff347fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14616" + ], + "x-ms-correlation-request-id": [ + "3eed9794-153d-417a-be45-6fd58466652e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185142Z:3eed9794-153d-417a-be45-6fd58466652e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c5b3e973-da0c-4aa4-b2bc-6653677afab9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14615" + ], + "x-ms-correlation-request-id": [ + "bb2bcbf1-2948-43f2-8e8b-d05bdea33d1e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185142Z:bb2bcbf1-2948-43f2-8e8b-d05bdea33d1e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "71a2562a-2d0e-4dd7-9c74-f6dc12352004" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14614" + ], + "x-ms-correlation-request-id": [ + "c9e5122c-f924-4a1b-a1a4-169884fb806c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185143Z:c9e5122c-f924-4a1b-a1a4-169884fb806c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4238e6d7-611d-4e7c-ac04-ca6bbb8f09dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14613" + ], + "x-ms-correlation-request-id": [ + "93fd3154-6734-4e55-b594-c237ffaf3232" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185143Z:93fd3154-6734-4e55-b594-c237ffaf3232" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "069574c4-fb2d-4ce1-b450-ea54c70f95d5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14612" + ], + "x-ms-correlation-request-id": [ + "fabb57e7-b882-4fe8-9f0b-f770ecc50b54" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185143Z:fabb57e7-b882-4fe8-9f0b-f770ecc50b54" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9727d312-c41c-4ef3-8c00-3484f4020382" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14611" + ], + "x-ms-correlation-request-id": [ + "8ee20507-1d69-4eb3-b051-9184ba479427" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185143Z:8ee20507-1d69-4eb3-b051-9184ba479427" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3fe4e556-6700-4806-b1c9-d868f037575f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14610" + ], + "x-ms-correlation-request-id": [ + "4d68d931-b0af-4ecf-8c31-272b09bb3de1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185143Z:4d68d931-b0af-4ecf-8c31-272b09bb3de1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b4f37e88-f43b-4c82-87be-c1e3b83d418b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14609" + ], + "x-ms-correlation-request-id": [ + "02fa927e-8695-4140-bfe2-60b789701466" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185144Z:02fa927e-8695-4140-bfe2-60b789701466" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8be8b9a7-f867-4645-b564-1b4e99984cc7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14608" + ], + "x-ms-correlation-request-id": [ + "706429f2-cba2-40f3-b90c-4725584d4ac3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185144Z:706429f2-cba2-40f3-b90c-4725584d4ac3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ec52f9b9-9b5c-404a-9837-07bf39c2805e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14607" + ], + "x-ms-correlation-request-id": [ + "2bc4b351-3943-40f8-ba81-8a5e8dfb53b8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185144Z:2bc4b351-3943-40f8-ba81-8a5e8dfb53b8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c2f6e620-de1a-43bb-81fe-d3b1abd73232" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14606" + ], + "x-ms-correlation-request-id": [ + "843cee0a-f140-49f6-812e-138eae8edc95" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185144Z:843cee0a-f140-49f6-812e-138eae8edc95" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bea5c0d7-63e2-4e4f-aa79-6b9ea5e6111b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14605" + ], + "x-ms-correlation-request-id": [ + "3519f01c-d65f-4158-bbed-7ea66af155b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185145Z:3519f01c-d65f-4158-bbed-7ea66af155b6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b97cc5f4-056f-4439-a79a-c9337a91ac31" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14604" + ], + "x-ms-correlation-request-id": [ + "784316e4-b0ee-4ea1-8290-d08062f25eeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185145Z:784316e4-b0ee-4ea1-8290-d08062f25eeb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f2d0f0f6-d65d-4561-886f-c88a4ea22766" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14603" + ], + "x-ms-correlation-request-id": [ + "7937b53e-5824-4ef0-8e1b-28141b3fb682" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185145Z:7937b53e-5824-4ef0-8e1b-28141b3fb682" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d71ee229-464b-4d50-b735-e39395414669" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14602" + ], + "x-ms-correlation-request-id": [ + "f90189c8-7128-45d6-a434-9e460d7258b2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185145Z:f90189c8-7128-45d6-a434-9e460d7258b2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "34f8cef8-c2d1-4b8e-a56b-b3c06b72f922" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14601" + ], + "x-ms-correlation-request-id": [ + "e1597be8-abd5-40f7-8493-43707c721289" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185146Z:e1597be8-abd5-40f7-8493-43707c721289" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e51cc278-dced-461c-b5b5-00f76f6213b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14600" + ], + "x-ms-correlation-request-id": [ + "4d3f30ba-c726-415f-9463-c5f910d59376" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185146Z:4d3f30ba-c726-415f-9463-c5f910d59376" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "76939024-5c45-4126-b5d1-2226aafe42b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14599" + ], + "x-ms-correlation-request-id": [ + "70cb13b0-425d-4a27-89ad-c72a7206bb7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185146Z:70cb13b0-425d-4a27-89ad-c72a7206bb7d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9b164687-9071-46c7-b3dd-d4b4fda49e5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14598" + ], + "x-ms-correlation-request-id": [ + "57c56b57-6f0f-401d-891d-a28389ce4c78" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185146Z:57c56b57-6f0f-401d-891d-a28389ce4c78" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0fc270b3-3393-4103-9b41-36e5d3633f2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14597" + ], + "x-ms-correlation-request-id": [ + "3a2f0677-8493-4a27-a321-90518ab886b7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185146Z:3a2f0677-8493-4a27-a321-90518ab886b7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ffd07a3d-4fb5-484f-97ad-eae4b10ebb5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14596" + ], + "x-ms-correlation-request-id": [ + "4cd7018a-84f3-40db-a78a-d9601cbe6c13" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185147Z:4cd7018a-84f3-40db-a78a-d9601cbe6c13" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c8b7ec74-34b4-4857-86e2-442d027054ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14595" + ], + "x-ms-correlation-request-id": [ + "02aa4540-af73-4c65-98e2-866b9fa00bc6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185147Z:02aa4540-af73-4c65-98e2-866b9fa00bc6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44e70303-5e77-4389-95d1-607167a58781" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14594" + ], + "x-ms-correlation-request-id": [ + "f8428d56-5345-4e33-84c5-536a47ac777a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185147Z:f8428d56-5345-4e33-84c5-536a47ac777a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1c9fb6ac-cb95-4f97-be64-2b49f1386062" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14593" + ], + "x-ms-correlation-request-id": [ + "63672393-376a-4b9c-9438-2fb490f4e6c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185147Z:63672393-376a-4b9c-9438-2fb490f4e6c9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "974d4c20-ede6-4f3e-b762-ec3fc54c1d00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14592" + ], + "x-ms-correlation-request-id": [ + "5bcfca9c-1438-44b0-acbe-f11c53c96599" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185148Z:5bcfca9c-1438-44b0-acbe-f11c53c96599" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cb0384e5-f328-45e1-a0c9-aa7178374669" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14591" + ], + "x-ms-correlation-request-id": [ + "e1f14e51-45b0-4b14-81ad-0a8fb9394533" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185148Z:e1f14e51-45b0-4b14-81ad-0a8fb9394533" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e3a2bc4-aef0-4b5c-9c00-37c2f921d67f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14590" + ], + "x-ms-correlation-request-id": [ + "10fdf26d-aae3-4b8d-b51a-5751b63b2ef6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185148Z:10fdf26d-aae3-4b8d-b51a-5751b63b2ef6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "19d25f67-28b3-42fd-aaad-11196058a0fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14589" + ], + "x-ms-correlation-request-id": [ + "843be322-36fe-4c3b-9b2a-3387a55fe2e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185148Z:843be322-36fe-4c3b-9b2a-3387a55fe2e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "56979560-337c-49a7-8c39-9f0a66d55606" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14588" + ], + "x-ms-correlation-request-id": [ + "84dab089-d1e9-4e48-a756-dec510feff70" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185149Z:84dab089-d1e9-4e48-a756-dec510feff70" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1ecdf5c-9f31-4ec6-a027-e7c674c4308f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14587" + ], + "x-ms-correlation-request-id": [ + "7ea120c5-1289-4297-8fc6-72638e24162e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185149Z:7ea120c5-1289-4297-8fc6-72638e24162e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c160c9dd-47d8-426f-a9ea-5c7c7ce694cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14586" + ], + "x-ms-correlation-request-id": [ + "f83a6077-74c1-47b6-b1a0-523ebc45c156" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185149Z:f83a6077-74c1-47b6-b1a0-523ebc45c156" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2e22fadc-54cf-4708-b524-c1ba119344a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14585" + ], + "x-ms-correlation-request-id": [ + "135d1706-c974-46c3-89c4-b64e51e952e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185149Z:135d1706-c974-46c3-89c4-b64e51e952e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e5eda72c-f7ea-42d2-bf75-e3c9fee947a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14584" + ], + "x-ms-correlation-request-id": [ + "ad5be160-3fd0-4981-aa6b-2cc44d6c8c8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185149Z:ad5be160-3fd0-4981-aa6b-2cc44d6c8c8a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "78009776-2e7f-4895-9f40-f7b3fae72bae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14583" + ], + "x-ms-correlation-request-id": [ + "bdf3f60c-3500-4a80-9ba2-e087edfc12e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185150Z:bdf3f60c-3500-4a80-9ba2-e087edfc12e4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e5d4bb5c-d8d9-4d6d-9325-c5dc470d4f26" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14582" + ], + "x-ms-correlation-request-id": [ + "35b2dab6-3815-4b5c-9b2b-17570ec904d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185150Z:35b2dab6-3815-4b5c-9b2b-17570ec904d2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a84b3b30-bc0e-469b-ac36-6e82150f55fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14581" + ], + "x-ms-correlation-request-id": [ + "ea005a8a-b481-4941-92ed-01ce4374e287" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185150Z:ea005a8a-b481-4941-92ed-01ce4374e287" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "726ece87-5e51-480a-9d86-b7ad8e362aa4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14580" + ], + "x-ms-correlation-request-id": [ + "abe8c6ee-a547-48d5-ba36-1a1231ddb00a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185150Z:abe8c6ee-a547-48d5-ba36-1a1231ddb00a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d54cb19b-6f29-47e1-99cb-81b26a949f87" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14579" + ], + "x-ms-correlation-request-id": [ + "01c2bc6d-b0a3-4fd8-86f5-3a499a580c2a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185151Z:01c2bc6d-b0a3-4fd8-86f5-3a499a580c2a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a51f4e12-0107-4ef5-ab0d-cf0383921c9e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14578" + ], + "x-ms-correlation-request-id": [ + "22611d9d-7fa4-4319-b72d-cb35f7b3e32f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185151Z:22611d9d-7fa4-4319-b72d-cb35f7b3e32f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0b296b61-8067-4b9e-9839-3a2674537f20" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14577" + ], + "x-ms-correlation-request-id": [ + "afe7e0bf-8693-43f0-b497-9ef7ba078a5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185151Z:afe7e0bf-8693-43f0-b497-9ef7ba078a5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "158b3953-bcd6-4fd4-8f42-cd2081a6e3d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14576" + ], + "x-ms-correlation-request-id": [ + "a7318199-2c18-451b-a894-d021251ffab2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185151Z:a7318199-2c18-451b-a894-d021251ffab2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "26526f26-5eb1-4c1e-b9fb-fde0ced57fd6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14575" + ], + "x-ms-correlation-request-id": [ + "fd4cab61-5820-4f9c-9e90-1e7ddc2a04db" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185152Z:fd4cab61-5820-4f9c-9e90-1e7ddc2a04db" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a0e3c4d1-c2a2-471b-9ce8-d6cb5d8f4218" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14574" + ], + "x-ms-correlation-request-id": [ + "161b68ec-cd46-43b4-8bdc-f7e223799f45" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185152Z:161b68ec-cd46-43b4-8bdc-f7e223799f45" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f1a38b6b-3dcd-42a3-8cd6-d99d0f527272" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14573" + ], + "x-ms-correlation-request-id": [ + "9716ab95-9008-4737-8a39-16b97884d7a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185152Z:9716ab95-9008-4737-8a39-16b97884d7a6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "17087f9b-389e-4820-99bb-1a15fe4093ba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14572" + ], + "x-ms-correlation-request-id": [ + "a80f9667-8503-4abf-a114-042257b5074b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185152Z:a80f9667-8503-4abf-a114-042257b5074b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "621e15d0-1821-4de9-a228-08acc2840839" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14571" + ], + "x-ms-correlation-request-id": [ + "e52be419-5e1c-4512-958b-9122c9b90ea8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185152Z:e52be419-5e1c-4512-958b-9122c9b90ea8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eca99fbd-fb5c-486d-b390-0f8520624fc7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14570" + ], + "x-ms-correlation-request-id": [ + "748d5f8c-7058-4053-9ca1-7cd180ad4f47" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185153Z:748d5f8c-7058-4053-9ca1-7cd180ad4f47" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "22aaee9b-4025-459f-9aa6-55b27f15d3e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14569" + ], + "x-ms-correlation-request-id": [ + "9cd85ca4-f767-4c93-aac4-068403c05b4e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185153Z:9cd85ca4-f767-4c93-aac4-068403c05b4e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0579d432-3b15-431f-8463-b800e415a134" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14568" + ], + "x-ms-correlation-request-id": [ + "a1e414c2-c63b-421d-b91a-b3decc21595b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185153Z:a1e414c2-c63b-421d-b91a-b3decc21595b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cfa7ee05-c6f5-41ee-97ff-e8e9f3110dbe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14567" + ], + "x-ms-correlation-request-id": [ + "376def5f-7fcb-4ada-80e2-976514db5ff9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185153Z:376def5f-7fcb-4ada-80e2-976514db5ff9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6b9bb1d1-a272-4310-84fa-44c7f43ada70" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14566" + ], + "x-ms-correlation-request-id": [ + "0f424a6b-999d-477c-b4f6-e43f702b3edf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185153Z:0f424a6b-999d-477c-b4f6-e43f702b3edf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf682cd3-37fe-4f59-9de5-577a8f6506f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14565" + ], + "x-ms-correlation-request-id": [ + "5ee63aab-142a-4092-b458-0eb01b923930" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185154Z:5ee63aab-142a-4092-b458-0eb01b923930" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "84328771-66c7-44b2-9b58-f00b8e7ad6a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14564" + ], + "x-ms-correlation-request-id": [ + "38af219e-3628-4a81-819a-6c09bf76fd54" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185154Z:38af219e-3628-4a81-819a-6c09bf76fd54" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8a195aef-c16f-4696-b0f5-0e2860457b90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14563" + ], + "x-ms-correlation-request-id": [ + "8fa17764-37d7-4c7c-8357-479b9dd457b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185154Z:8fa17764-37d7-4c7c-8357-479b9dd457b9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d88f6457-09ef-4a10-b3f0-931dfaa959f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14562" + ], + "x-ms-correlation-request-id": [ + "3a06f9ff-b76f-4364-a9af-c5e6aa48ed5d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185154Z:3a06f9ff-b76f-4364-a9af-c5e6aa48ed5d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04df2b5b-c807-4f8c-9a35-6bf58c0ba44b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14561" + ], + "x-ms-correlation-request-id": [ + "78e1d404-a90c-41df-a215-e66045b8cad2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185155Z:78e1d404-a90c-41df-a215-e66045b8cad2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "47e5df35-34f6-4fe9-9da8-6ad99af42b5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14560" + ], + "x-ms-correlation-request-id": [ + "ae5f8ea8-d521-472b-a898-53c219b5dee5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185155Z:ae5f8ea8-d521-472b-a898-53c219b5dee5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7e324a9a-130e-4e40-9952-751649430899" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14559" + ], + "x-ms-correlation-request-id": [ + "5085d485-52a3-481b-9087-71847e07ca80" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185155Z:5085d485-52a3-481b-9087-71847e07ca80" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a857bb19-3d8c-4624-bd26-a78275329d4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14558" + ], + "x-ms-correlation-request-id": [ + "8b2b6075-a627-4d84-a6af-52dde290766a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185155Z:8b2b6075-a627-4d84-a6af-52dde290766a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2cb20dcb-b8fd-4e6d-9f54-e238d8918a50" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14557" + ], + "x-ms-correlation-request-id": [ + "1e8f343d-8056-442c-ad42-d6b568366d9e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185155Z:1e8f343d-8056-442c-ad42-d6b568366d9e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5fd3d4c1-17ff-414b-a58f-df299db92cb5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14556" + ], + "x-ms-correlation-request-id": [ + "b251e41b-3c93-4dbe-8c7c-1ced595701c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185156Z:b251e41b-3c93-4dbe-8c7c-1ced595701c0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a9580646-167c-4a20-897b-cba5366d2833" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14555" + ], + "x-ms-correlation-request-id": [ + "1272253b-b044-46f0-83b5-bdbdd2f94d2a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185156Z:1272253b-b044-46f0-83b5-bdbdd2f94d2a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25ac023d-b0dd-4960-b5ef-d5a1a5db6807" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14554" + ], + "x-ms-correlation-request-id": [ + "aceff6eb-e00b-4036-9803-988f82ea58c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185156Z:aceff6eb-e00b-4036-9803-988f82ea58c0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d72341db-7eef-4052-ac5f-7a7484fdecc9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14553" + ], + "x-ms-correlation-request-id": [ + "6af34af1-4fc8-4ccf-9fa9-7820f7b9700d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185156Z:6af34af1-4fc8-4ccf-9fa9-7820f7b9700d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da398fcd-6035-419b-91d8-abd2f2d8c4a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14552" + ], + "x-ms-correlation-request-id": [ + "e0ded064-8536-486f-95fa-294a130f51de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185157Z:e0ded064-8536-486f-95fa-294a130f51de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4bc01e04-d26a-476c-9255-fca7820a775e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14551" + ], + "x-ms-correlation-request-id": [ + "a553d80d-86eb-4f4d-89f5-a4d92c805fea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185157Z:a553d80d-86eb-4f4d-89f5-a4d92c805fea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3ca66250-de52-48f7-a622-341c37810025" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14550" + ], + "x-ms-correlation-request-id": [ + "96c0c767-9f26-4708-9299-40e3e18c6525" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185157Z:96c0c767-9f26-4708-9299-40e3e18c6525" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9d897f0e-d358-4676-a494-e1e2fa288b1b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14549" + ], + "x-ms-correlation-request-id": [ + "25156ff5-5ecd-44ec-85e5-c31fc1cddaab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185157Z:25156ff5-5ecd-44ec-85e5-c31fc1cddaab" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3ce72e44-6e5e-4220-a17f-6fb45a6ccb83" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14548" + ], + "x-ms-correlation-request-id": [ + "e7a5db33-f581-4fad-be02-b6b4b55940e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185157Z:e7a5db33-f581-4fad-be02-b6b4b55940e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "429d0d10-6b29-47aa-808e-ecb250a06cae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14547" + ], + "x-ms-correlation-request-id": [ + "5165ad33-d3be-4098-88d5-370f052985a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185158Z:5165ad33-d3be-4098-88d5-370f052985a3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "66e539fa-1da1-43cc-8572-de583f7150f8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14546" + ], + "x-ms-correlation-request-id": [ + "162d6c94-b570-491e-b4b9-5cb46258c60b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185158Z:162d6c94-b570-491e-b4b9-5cb46258c60b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eabd1e1b-0a14-4d05-a3a7-82eed460a427" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14545" + ], + "x-ms-correlation-request-id": [ + "de1ad10d-80e8-48ab-a2b4-c22ff9e30ea6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185158Z:de1ad10d-80e8-48ab-a2b4-c22ff9e30ea6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2df554a8-2dcd-400e-a5a6-4be804d2c7f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14544" + ], + "x-ms-correlation-request-id": [ + "31717a83-e1f7-4cd4-ae8b-4f5667de6f0a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185158Z:31717a83-e1f7-4cd4-ae8b-4f5667de6f0a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3a9f0e20-c17c-4163-b6f9-7834b132dfb5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14543" + ], + "x-ms-correlation-request-id": [ + "70e31b25-9e8c-4615-9c5c-58ec079ed0a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185159Z:70e31b25-9e8c-4615-9c5c-58ec079ed0a2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "63ba7d44-aa21-4556-ac1d-b450501aafe7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14542" + ], + "x-ms-correlation-request-id": [ + "85368484-45f4-40c4-92a0-204ea484a57a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185159Z:85368484-45f4-40c4-92a0-204ea484a57a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2d125586-3e71-4133-a711-e8fecddc3feb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14541" + ], + "x-ms-correlation-request-id": [ + "0e8a3df9-0b36-4bd7-8cfa-6d093191636d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185159Z:0e8a3df9-0b36-4bd7-8cfa-6d093191636d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fee31080-efed-418a-903f-069e20797a7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14540" + ], + "x-ms-correlation-request-id": [ + "3fa4489a-edb2-4fa0-9ad0-79f3463baa6c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185159Z:3fa4489a-edb2-4fa0-9ad0-79f3463baa6c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "881e611b-5cf7-4871-afc7-b3801c0fdc30" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14539" + ], + "x-ms-correlation-request-id": [ + "119cfc34-c45b-434c-ab20-8547a05e2f3f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185200Z:119cfc34-c45b-434c-ab20-8547a05e2f3f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d5b3e253-4ea6-4514-b9c4-7aadf8469325" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14538" + ], + "x-ms-correlation-request-id": [ + "ea08a707-1780-4a0d-a5bf-4ba52a8d2005" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185200Z:ea08a707-1780-4a0d-a5bf-4ba52a8d2005" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "61049420-1d91-43e9-a81b-c355d1e49d49" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14537" + ], + "x-ms-correlation-request-id": [ + "4072ec06-f815-4785-9fbd-4016e76f619b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185200Z:4072ec06-f815-4785-9fbd-4016e76f619b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0ccb5cc7-e5bd-4b3c-b366-2ec1ef58f662" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14536" + ], + "x-ms-correlation-request-id": [ + "b8c01748-1693-4666-ae8b-acc2ca5b75eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185200Z:b8c01748-1693-4666-ae8b-acc2ca5b75eb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:51:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a8accf3a-bbab-4915-8ec1-3f8bf5341951" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14535" + ], + "x-ms-correlation-request-id": [ + "8f08c6f2-1441-4445-9196-40972bcc0b2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185200Z:8f08c6f2-1441-4445-9196-40972bcc0b2f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e13d77b-11ad-40f8-8db9-e774bfa13538" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14534" + ], + "x-ms-correlation-request-id": [ + "ce094da6-3cd1-456e-b0f2-eaeb6de6f35a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185201Z:ce094da6-3cd1-456e-b0f2-eaeb6de6f35a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "33d7c125-0d06-4963-ab42-53574b9ce712" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14533" + ], + "x-ms-correlation-request-id": [ + "49f6ff3d-66d5-43bc-a833-7ea2e98b17ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185201Z:49f6ff3d-66d5-43bc-a833-7ea2e98b17ba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1cc7e85-7b0a-4e63-a85c-9d2c7b5b343d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14532" + ], + "x-ms-correlation-request-id": [ + "f8334e80-4d9f-42a4-aeb1-e01db0fd909e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185201Z:f8334e80-4d9f-42a4-aeb1-e01db0fd909e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e468bdc3-f137-4957-83a5-0e564fd3f952" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14531" + ], + "x-ms-correlation-request-id": [ + "a1851f3c-417a-4ba2-a4df-a15a4cec3822" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185201Z:a1851f3c-417a-4ba2-a4df-a15a4cec3822" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "414aa080-0312-4f80-b90f-aaa1cd69a7f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14530" + ], + "x-ms-correlation-request-id": [ + "babeb561-109b-4b1b-ab80-12a02134d1ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185202Z:babeb561-109b-4b1b-ab80-12a02134d1ff" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c55249f4-b2ec-48fc-801a-a9eee1ddcc4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14529" + ], + "x-ms-correlation-request-id": [ + "9acd95ea-6af8-44f2-8cf2-5a4c521729f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185202Z:9acd95ea-6af8-44f2-8cf2-5a4c521729f1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a158b2df-ffd1-47f3-8790-8751cf07b6ba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14528" + ], + "x-ms-correlation-request-id": [ + "5870fdba-7895-42da-a0d6-73e5f66a979a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185202Z:5870fdba-7895-42da-a0d6-73e5f66a979a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da8fd1d2-6746-4493-a7d1-19b7bcb741ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14527" + ], + "x-ms-correlation-request-id": [ + "e9c0a15a-c36f-480c-95d2-bdd77d44bf97" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185202Z:e9c0a15a-c36f-480c-95d2-bdd77d44bf97" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d80d40c-a2a1-4e11-b1c7-c02f34a73b0b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14526" + ], + "x-ms-correlation-request-id": [ + "cc51d049-c265-40c3-939e-1eff25f95b89" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185202Z:cc51d049-c265-40c3-939e-1eff25f95b89" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "97a7d3c4-e660-414c-a4f0-ae1b8e8ad63f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14525" + ], + "x-ms-correlation-request-id": [ + "c0cb1910-4135-44f1-833c-eb800e995c87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185203Z:c0cb1910-4135-44f1-833c-eb800e995c87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d3fca4fa-b38b-40cc-b631-98b56d9320e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14524" + ], + "x-ms-correlation-request-id": [ + "4508668a-0014-40ee-ac75-db8fae9adb8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185203Z:4508668a-0014-40ee-ac75-db8fae9adb8a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e7bde11b-6417-49df-85d4-6aeb7e40d23f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14523" + ], + "x-ms-correlation-request-id": [ + "3b8d88eb-57b2-4f39-961c-19ef723050a9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185203Z:3b8d88eb-57b2-4f39-961c-19ef723050a9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1fcbf0d1-bf78-4932-8667-4f3d5dc2ec6c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14522" + ], + "x-ms-correlation-request-id": [ + "70733e33-7218-412f-b3f1-9a1e90bdf85b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185203Z:70733e33-7218-412f-b3f1-9a1e90bdf85b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "08bf9bd5-6378-411c-94e3-af8db2dd78e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14521" + ], + "x-ms-correlation-request-id": [ + "78429365-b06e-4101-a5dd-4fb3f265146d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185204Z:78429365-b06e-4101-a5dd-4fb3f265146d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "055e563e-a253-4aa7-af7a-b4bced677e7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14520" + ], + "x-ms-correlation-request-id": [ + "b665f1f1-f193-4acb-96f0-825294aa5dc5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185204Z:b665f1f1-f193-4acb-96f0-825294aa5dc5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a86e2262-1cd5-40e0-a411-a3db5b62580c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14519" + ], + "x-ms-correlation-request-id": [ + "59370782-a9a3-4dad-b31d-17ea536e5283" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185204Z:59370782-a9a3-4dad-b31d-17ea536e5283" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5cb8216a-d4db-45de-84c1-aa2505d74c70" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14518" + ], + "x-ms-correlation-request-id": [ + "4c8eea87-1757-4937-afe1-d13bc6490949" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185204Z:4c8eea87-1757-4937-afe1-d13bc6490949" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4434a18a-15e3-40c3-85e5-db124f9bf53c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14517" + ], + "x-ms-correlation-request-id": [ + "1ea06d9d-7f9b-49d2-89ad-9638602bb954" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185204Z:1ea06d9d-7f9b-49d2-89ad-9638602bb954" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "91997e71-46f5-4c0d-ac3a-e83e3f001fac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14516" + ], + "x-ms-correlation-request-id": [ + "2c0ab23e-1ccf-4a95-a4d3-3cb993039ba9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185205Z:2c0ab23e-1ccf-4a95-a4d3-3cb993039ba9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4156bda4-1d3c-4197-a5c4-c3d08e526ab6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14515" + ], + "x-ms-correlation-request-id": [ + "65070c4b-1a9c-4dc4-a6c6-60948d2cb33d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185205Z:65070c4b-1a9c-4dc4-a6c6-60948d2cb33d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a3706022-7766-42c4-b888-aacb9f4384b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14514" + ], + "x-ms-correlation-request-id": [ + "88f3966e-5800-4857-bf48-bda600242f6e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185205Z:88f3966e-5800-4857-bf48-bda600242f6e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3dc1bcaa-139b-4c16-b7de-24054a873373" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14513" + ], + "x-ms-correlation-request-id": [ + "d8cd31c5-1f47-4c02-8c3d-a4c3f6e34178" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185205Z:d8cd31c5-1f47-4c02-8c3d-a4c3f6e34178" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ab2d72bb-29c1-40e2-ab97-9e7f511284dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14512" + ], + "x-ms-correlation-request-id": [ + "29f97f81-4bee-444e-8b54-6a51e190cf02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185206Z:29f97f81-4bee-444e-8b54-6a51e190cf02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c895aa10-26be-4b2a-88ef-236f842d1cc7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14511" + ], + "x-ms-correlation-request-id": [ + "9d2f6bf7-3d81-4fc4-95ac-672180477504" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185206Z:9d2f6bf7-3d81-4fc4-95ac-672180477504" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a01ba84f-aa89-400f-a93d-d71debbadcf7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14510" + ], + "x-ms-correlation-request-id": [ + "60b41d90-9582-41fb-8faf-81825031e7a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185206Z:60b41d90-9582-41fb-8faf-81825031e7a8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d9b13e50-9ac4-499a-8519-4d61df6109af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14509" + ], + "x-ms-correlation-request-id": [ + "43ff70d4-045e-4bac-8ed7-01d96b886463" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185206Z:43ff70d4-045e-4bac-8ed7-01d96b886463" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a849d781-9006-45e3-bd86-c759ae2620ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14508" + ], + "x-ms-correlation-request-id": [ + "33f7643f-b22d-406a-a1cc-f28ced5b1894" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185207Z:33f7643f-b22d-406a-a1cc-f28ced5b1894" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aeacad03-c3d4-49c2-b576-a2dcd2f5983f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14507" + ], + "x-ms-correlation-request-id": [ + "f76218ad-7323-46d3-941e-53b3472bfa4b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185207Z:f76218ad-7323-46d3-941e-53b3472bfa4b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1fc31fb2-8e17-4463-b492-d3668fe59ff2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14506" + ], + "x-ms-correlation-request-id": [ + "0a3a205c-cdc8-4984-b6f6-9c820e0d6248" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185207Z:0a3a205c-cdc8-4984-b6f6-9c820e0d6248" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "92e383df-d57d-42ee-beb6-fc3985ee4849" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14505" + ], + "x-ms-correlation-request-id": [ + "ed72757c-cc20-4e2a-b801-257578644a40" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185207Z:ed72757c-cc20-4e2a-b801-257578644a40" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "37c6794c-ea02-45fe-ab7b-ebf9d65a8f1b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14504" + ], + "x-ms-correlation-request-id": [ + "4924b489-59ef-4a6c-8e60-3cdce7061d96" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185207Z:4924b489-59ef-4a6c-8e60-3cdce7061d96" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dcab7a36-dd86-442b-9e42-123f5c0bb28e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14503" + ], + "x-ms-correlation-request-id": [ + "3d16f9aa-225d-43b2-9f79-33c28cd918f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185208Z:3d16f9aa-225d-43b2-9f79-33c28cd918f1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "51952d0d-79b2-46bf-9167-700c951e6047" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14502" + ], + "x-ms-correlation-request-id": [ + "385b3c1e-b331-491b-a89c-7cf9b093e08c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185208Z:385b3c1e-b331-491b-a89c-7cf9b093e08c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fd65cbcf-acfa-4308-bf7f-1b1ba682c39e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14501" + ], + "x-ms-correlation-request-id": [ + "6309bd8d-f1d1-46df-bfa0-c0793ec6a23b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185208Z:6309bd8d-f1d1-46df-bfa0-c0793ec6a23b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f82d1376-c148-4088-b109-b99c7c9264f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14500" + ], + "x-ms-correlation-request-id": [ + "f2c05b92-8fc6-420d-ba0b-e4cc24d389c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185208Z:f2c05b92-8fc6-420d-ba0b-e4cc24d389c5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "72e66613-a77c-44ad-9d3f-e53a58b9cb86" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14499" + ], + "x-ms-correlation-request-id": [ + "a72cae19-8c68-44ed-a91f-6d2de1ea7b41" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185209Z:a72cae19-8c68-44ed-a91f-6d2de1ea7b41" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da5ccab9-e3af-4cdc-bfd9-4f285427ac22" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14498" + ], + "x-ms-correlation-request-id": [ + "f8bf2fd0-6f39-49c0-a592-adafe692d880" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185209Z:f8bf2fd0-6f39-49c0-a592-adafe692d880" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5078b529-44b9-464d-8825-d619f973ddb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14497" + ], + "x-ms-correlation-request-id": [ + "a6f2cbfa-ec14-4f06-897f-b552f0ff274e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185209Z:a6f2cbfa-ec14-4f06-897f-b552f0ff274e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "54c0d746-75a3-4612-9c49-de489c48497e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14496" + ], + "x-ms-correlation-request-id": [ + "b9c3fd1d-e4a5-4423-a67b-3772cf2358a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185209Z:b9c3fd1d-e4a5-4423-a67b-3772cf2358a8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5d022a7-d36c-4252-b15a-dbca61c92b89" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14495" + ], + "x-ms-correlation-request-id": [ + "e0e50331-f204-4b64-8418-8fae43469799" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185209Z:e0e50331-f204-4b64-8418-8fae43469799" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e8dd787c-df67-4455-aad7-b8689222b346" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14494" + ], + "x-ms-correlation-request-id": [ + "1fe1e172-4a31-4331-927a-fc2146240460" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185210Z:1fe1e172-4a31-4331-927a-fc2146240460" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6ba7c10b-52f4-4cd4-90c8-e86e92086b8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14493" + ], + "x-ms-correlation-request-id": [ + "95d0c4ec-42cf-4b86-b4de-d0bf226ef2f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185210Z:95d0c4ec-42cf-4b86-b4de-d0bf226ef2f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "02b4710a-c181-4545-aee4-ac1ca609295b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14492" + ], + "x-ms-correlation-request-id": [ + "a8d78b24-9569-4417-ad64-bc1e443d309e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185210Z:a8d78b24-9569-4417-ad64-bc1e443d309e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c186e35c-51a2-41a5-b253-10c005629847" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14491" + ], + "x-ms-correlation-request-id": [ + "cc98742d-a119-4321-9085-e59cc6ef1565" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185210Z:cc98742d-a119-4321-9085-e59cc6ef1565" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "73bf4cc3-937f-45e9-8138-6928d6fad587" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14490" + ], + "x-ms-correlation-request-id": [ + "d2d359a0-9034-4b86-9938-d165926592d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185211Z:d2d359a0-9034-4b86-9938-d165926592d7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c307c9fc-9410-4b93-a716-326310be3bcd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14489" + ], + "x-ms-correlation-request-id": [ + "fe420b78-aff0-4794-add0-ed34d34ef2e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185211Z:fe420b78-aff0-4794-add0-ed34d34ef2e7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a2c5764e-d611-4a86-95e2-5eaaf6954b74" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14488" + ], + "x-ms-correlation-request-id": [ + "f5991c0e-54bc-41fe-b0ad-3f649746a782" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185211Z:f5991c0e-54bc-41fe-b0ad-3f649746a782" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c72ed8f-860b-4088-aa52-4f491dd3b23a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14487" + ], + "x-ms-correlation-request-id": [ + "92af0281-430f-4c0c-9708-0edd95d801f2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185211Z:92af0281-430f-4c0c-9708-0edd95d801f2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4a9bd0d8-cfa4-4afe-b9fa-6f6442b7e459" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14486" + ], + "x-ms-correlation-request-id": [ + "da56311b-8273-4eb3-86f3-0e3195f0628f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185211Z:da56311b-8273-4eb3-86f3-0e3195f0628f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a5af4792-7452-4379-b497-4a23abf253ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14485" + ], + "x-ms-correlation-request-id": [ + "6e994e80-a322-4c4d-b9d5-966072149df8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185212Z:6e994e80-a322-4c4d-b9d5-966072149df8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "446ba5b6-3292-46df-a269-cc88b5b7aade" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14484" + ], + "x-ms-correlation-request-id": [ + "e761da01-f76f-4cb7-9461-e87c0dfb1fe3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185212Z:e761da01-f76f-4cb7-9461-e87c0dfb1fe3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1e4868a-1ae5-44a1-bb8e-a15d03f560cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14483" + ], + "x-ms-correlation-request-id": [ + "8aab22d0-6831-4ed1-bfd5-7ec86cacd6e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185212Z:8aab22d0-6831-4ed1-bfd5-7ec86cacd6e7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f2676f31-2712-4a41-93b0-ebe01542690c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14482" + ], + "x-ms-correlation-request-id": [ + "63402b70-2c1a-418a-92b8-70753cad1462" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185212Z:63402b70-2c1a-418a-92b8-70753cad1462" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "240fadc7-0bcb-4f57-8378-9f1b1b18a3d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14481" + ], + "x-ms-correlation-request-id": [ + "94d4b91f-e24b-4f43-bfb0-c94d048cf044" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185213Z:94d4b91f-e24b-4f43-bfb0-c94d048cf044" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c35bc57f-1e1a-4f19-861f-58f28b3b89d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14480" + ], + "x-ms-correlation-request-id": [ + "536ab8e5-2dc0-45d6-814f-fcf1b16033b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185213Z:536ab8e5-2dc0-45d6-814f-fcf1b16033b0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0b914d21-c1a0-48a5-854d-8b90c348c8b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14479" + ], + "x-ms-correlation-request-id": [ + "0f54e440-390a-47ee-8084-f8e014d732ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185213Z:0f54e440-390a-47ee-8084-f8e014d732ff" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ec8dc418-014b-4a43-8c68-e72653147d5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14478" + ], + "x-ms-correlation-request-id": [ + "bd36c4cc-b786-46e2-93a7-fad962bfc266" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185213Z:bd36c4cc-b786-46e2-93a7-fad962bfc266" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f252dc9e-1cae-42d8-b8fd-c1d2e92893ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14477" + ], + "x-ms-correlation-request-id": [ + "58552ade-ec5b-49cc-900a-6e7a8de68364" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185214Z:58552ade-ec5b-49cc-900a-6e7a8de68364" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ec035f2d-c07e-4187-9f9b-4b473db4a3fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14476" + ], + "x-ms-correlation-request-id": [ + "6b9dbfd3-bba8-4105-b4ce-382e71e02c4b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185214Z:6b9dbfd3-bba8-4105-b4ce-382e71e02c4b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2a977abe-552d-458b-99a2-381a0f901033" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14475" + ], + "x-ms-correlation-request-id": [ + "2334f4b2-867a-4468-adb1-c3709a6db477" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185214Z:2334f4b2-867a-4468-adb1-c3709a6db477" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2652bd4e-4513-46ac-a482-b51546452b38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14474" + ], + "x-ms-correlation-request-id": [ + "a202f619-6c5c-4cd0-8257-7146093aa8d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185214Z:a202f619-6c5c-4cd0-8257-7146093aa8d8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "15358748-d6e5-4930-a8f4-d12e7ae8acc9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14473" + ], + "x-ms-correlation-request-id": [ + "ee2c2ff5-dc6b-4a91-a7a6-ce585d9f05ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185214Z:ee2c2ff5-dc6b-4a91-a7a6-ce585d9f05ba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0c8c30d6-2117-4281-a422-176930658270" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14472" + ], + "x-ms-correlation-request-id": [ + "9198f2ce-95ec-4f73-82d9-149543a955e6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185215Z:9198f2ce-95ec-4f73-82d9-149543a955e6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eb8aa30f-8286-4373-a2d1-f5a4bcdb3c73" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14471" + ], + "x-ms-correlation-request-id": [ + "90a0487b-445e-4fb0-92ca-2a76f9360294" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185215Z:90a0487b-445e-4fb0-92ca-2a76f9360294" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "904a9021-7d90-43ce-abf9-b1b1c254995f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14470" + ], + "x-ms-correlation-request-id": [ + "70263117-c030-4653-811c-ee386df195de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185215Z:70263117-c030-4653-811c-ee386df195de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c969ca98-1329-4a4c-9443-99d205fd5d9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14469" + ], + "x-ms-correlation-request-id": [ + "46c01f21-1798-455c-b579-31436610c97f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185215Z:46c01f21-1798-455c-b579-31436610c97f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a25acb5f-3094-43f3-bc0a-f3d52eedf15d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14468" + ], + "x-ms-correlation-request-id": [ + "ed157495-ceda-4a2e-84d9-0983855bcf79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185216Z:ed157495-ceda-4a2e-84d9-0983855bcf79" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "85c1f289-6466-492e-a03f-d3f3a60b5c79" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14467" + ], + "x-ms-correlation-request-id": [ + "63118491-d271-4acc-a66b-a7a6d23b24d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185216Z:63118491-d271-4acc-a66b-a7a6d23b24d5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cb06df7b-3913-4a10-afee-d2d8c8c71220" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14466" + ], + "x-ms-correlation-request-id": [ + "0e2457d0-63ff-4497-b2b2-465da587e57f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185216Z:0e2457d0-63ff-4497-b2b2-465da587e57f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c2e1c3cc-53dc-499f-857e-22fbced322d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14465" + ], + "x-ms-correlation-request-id": [ + "498b96ea-5162-4c4c-9e8f-1ff829416468" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185216Z:498b96ea-5162-4c4c-9e8f-1ff829416468" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b3d3ee53-b2d9-4e30-ab5b-b767bd402ec4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14464" + ], + "x-ms-correlation-request-id": [ + "e2950b1d-f220-4d65-baa0-40e22f5b5efe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185216Z:e2950b1d-f220-4d65-baa0-40e22f5b5efe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "251f4416-b81f-469a-84d1-6fe8ef018bec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14463" + ], + "x-ms-correlation-request-id": [ + "997c9c24-69f1-4a26-8bb4-94520062d076" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185217Z:997c9c24-69f1-4a26-8bb4-94520062d076" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "92bed89d-b2ea-4105-926f-1df020bb9bad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14462" + ], + "x-ms-correlation-request-id": [ + "d8854c10-5b25-45da-b54f-aeecc5aa4cdb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185217Z:d8854c10-5b25-45da-b54f-aeecc5aa4cdb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "273fcf17-aad7-4c1d-9442-2a9fd87b6913" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14461" + ], + "x-ms-correlation-request-id": [ + "ebabd32d-c70d-48c7-b694-a04efd7b87bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185217Z:ebabd32d-c70d-48c7-b694-a04efd7b87bc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b5b27f67-31e2-4132-b7df-2679b51178c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14460" + ], + "x-ms-correlation-request-id": [ + "045b1e75-0b09-4153-a11b-9cf43bf18dd3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185217Z:045b1e75-0b09-4153-a11b-9cf43bf18dd3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "963bd240-5437-4a15-a19e-41e65d98df96" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14459" + ], + "x-ms-correlation-request-id": [ + "92afac68-4186-43ff-93bd-066e18a4789a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185218Z:92afac68-4186-43ff-93bd-066e18a4789a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "324b1fa7-dcb2-4b30-8052-9af752102e5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14458" + ], + "x-ms-correlation-request-id": [ + "0bb640bf-ef00-4f7c-8758-6f2b4486981e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185218Z:0bb640bf-ef00-4f7c-8758-6f2b4486981e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e8713cc-36a2-48a0-9b5b-57e534a66d97" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14457" + ], + "x-ms-correlation-request-id": [ + "17c754d6-a0d3-4790-a7ac-b18a75621ade" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185218Z:17c754d6-a0d3-4790-a7ac-b18a75621ade" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b20ee646-c182-474e-9250-daf6c1293242" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14456" + ], + "x-ms-correlation-request-id": [ + "10690870-cb03-4672-866b-85fcd5295122" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185218Z:10690870-cb03-4672-866b-85fcd5295122" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e7e8acb0-45ac-43cc-9453-54d3d79be771" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14455" + ], + "x-ms-correlation-request-id": [ + "c1434c7d-91ac-4216-b994-8cf3d1c54721" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185218Z:c1434c7d-91ac-4216-b994-8cf3d1c54721" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ee147c01-797c-4068-b280-20c20b2c824e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14454" + ], + "x-ms-correlation-request-id": [ + "527af23e-8750-49af-be92-fe070e8f2c3a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185219Z:527af23e-8750-49af-be92-fe070e8f2c3a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ef4c75f7-ed02-4dda-af6b-541575ff7f32" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14453" + ], + "x-ms-correlation-request-id": [ + "a5459b0e-8101-4cb2-9f7c-4399b91687db" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185219Z:a5459b0e-8101-4cb2-9f7c-4399b91687db" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aef7c19a-4083-467a-a449-01904c3ef4a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14452" + ], + "x-ms-correlation-request-id": [ + "ce2eff1e-71ed-43e7-abe9-df65fc1d1c22" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185219Z:ce2eff1e-71ed-43e7-abe9-df65fc1d1c22" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1b494450-421e-4760-97a8-8f711e27a493" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14451" + ], + "x-ms-correlation-request-id": [ + "736d1ad7-eec7-4718-b520-f6d237a497ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185219Z:736d1ad7-eec7-4718-b520-f6d237a497ee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f467fda5-3472-451c-9069-d36c324ced94" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14450" + ], + "x-ms-correlation-request-id": [ + "543eed59-1f18-44b1-999c-a9d6bac46b25" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185219Z:543eed59-1f18-44b1-999c-a9d6bac46b25" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cae944aa-881f-4cfe-8902-349e4266f4b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14449" + ], + "x-ms-correlation-request-id": [ + "4dd1650e-a400-484a-ab43-cf001a3cef3f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185220Z:4dd1650e-a400-484a-ab43-cf001a3cef3f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "df5ec9c8-78c4-4345-803b-2b5824fda318" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14448" + ], + "x-ms-correlation-request-id": [ + "430445ed-e9f2-4ef9-810f-e0975260265e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185220Z:430445ed-e9f2-4ef9-810f-e0975260265e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6452e608-fab2-4451-8f39-0c991b855fd1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14447" + ], + "x-ms-correlation-request-id": [ + "d6c8f56e-d136-4bb7-adae-129cabe7c8ed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185220Z:d6c8f56e-d136-4bb7-adae-129cabe7c8ed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a8b76237-90a4-4252-993b-3e090e8ef5e5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14446" + ], + "x-ms-correlation-request-id": [ + "49ef244a-127c-4450-b39d-bb0995bbdc07" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185220Z:49ef244a-127c-4450-b39d-bb0995bbdc07" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c5fbc22-fc9f-4599-84f1-12bebe0c3cc6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14445" + ], + "x-ms-correlation-request-id": [ + "438d3e4a-dcb1-4717-a9d2-890b47f06f28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185221Z:438d3e4a-dcb1-4717-a9d2-890b47f06f28" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4314cea3-21fc-4f38-ab08-8935a19447d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14444" + ], + "x-ms-correlation-request-id": [ + "8a3b241e-d04f-472d-9d10-b258fcb07692" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185221Z:8a3b241e-d04f-472d-9d10-b258fcb07692" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c7d6b893-d66c-4d7d-a697-400a7bed84ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14443" + ], + "x-ms-correlation-request-id": [ + "2916490b-712d-4820-befc-7b28e6299c35" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185221Z:2916490b-712d-4820-befc-7b28e6299c35" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e7dd0243-d32b-49f9-8865-3f7c7188fbbc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14442" + ], + "x-ms-correlation-request-id": [ + "fe5cb933-69d0-48d8-9929-0c0ebf239603" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185221Z:fe5cb933-69d0-48d8-9929-0c0ebf239603" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d0f636ec-94bb-4b8f-95f9-9cc5d79483f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14441" + ], + "x-ms-correlation-request-id": [ + "53bd2421-9bfd-434a-b11c-655921cf0367" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185221Z:53bd2421-9bfd-434a-b11c-655921cf0367" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2033640b-3f9e-45dc-833b-f7729b4e15ba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14440" + ], + "x-ms-correlation-request-id": [ + "22bb4736-8671-49ce-84de-2fa95ecf1d86" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185222Z:22bb4736-8671-49ce-84de-2fa95ecf1d86" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3c14b4a4-4960-468f-8ca8-bd0964b15f3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14439" + ], + "x-ms-correlation-request-id": [ + "bb0b011e-05a4-44f4-89e8-51958b710522" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185222Z:bb0b011e-05a4-44f4-89e8-51958b710522" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04f29f64-782e-4938-b4cd-127497b80e02" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14438" + ], + "x-ms-correlation-request-id": [ + "655a63df-af41-4d75-8351-afb1d4375bdd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185222Z:655a63df-af41-4d75-8351-afb1d4375bdd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7590a43d-16e8-42b7-a374-8bf85c91a4be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14437" + ], + "x-ms-correlation-request-id": [ + "f446265b-3b6b-497e-b00b-bee3637b1839" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185222Z:f446265b-3b6b-497e-b00b-bee3637b1839" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ad59e6c6-c953-443d-94d8-38979d8b1b9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14436" + ], + "x-ms-correlation-request-id": [ + "6567fd49-1b81-4ded-845b-155d3efca5c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185223Z:6567fd49-1b81-4ded-845b-155d3efca5c9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "17494043-64d0-4b44-9233-6973e714d5ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14435" + ], + "x-ms-correlation-request-id": [ + "177d4a8f-4405-49ca-9883-e2ce09949e0b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185223Z:177d4a8f-4405-49ca-9883-e2ce09949e0b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "72763de9-ba7f-41b7-a9eb-4f177c93dcde" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14434" + ], + "x-ms-correlation-request-id": [ + "d7808558-329b-4845-a7c1-3cf18200f46f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185223Z:d7808558-329b-4845-a7c1-3cf18200f46f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3190edbb-3e7e-4c28-8985-ce87b5cfe0c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14433" + ], + "x-ms-correlation-request-id": [ + "6fd98324-1e49-4ffe-af89-8af2390d20ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185223Z:6fd98324-1e49-4ffe-af89-8af2390d20ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5d42887a-a847-419d-83ab-11a0c0546f58" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14432" + ], + "x-ms-correlation-request-id": [ + "efde393d-fe4a-4b11-b390-95b80ef9ba8f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185223Z:efde393d-fe4a-4b11-b390-95b80ef9ba8f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dccca5ef-6f8b-4442-a17a-c38d5b20fc37" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14431" + ], + "x-ms-correlation-request-id": [ + "b2a6c114-5fb4-4809-9cb2-02d457bfe4f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185224Z:b2a6c114-5fb4-4809-9cb2-02d457bfe4f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fba5afb9-5f0b-4ab9-a87f-917335087671" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14430" + ], + "x-ms-correlation-request-id": [ + "4e43a844-5253-4636-9eb5-6f99bcfa0e17" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185224Z:4e43a844-5253-4636-9eb5-6f99bcfa0e17" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48c37496-b6da-4f63-bb46-61bad66132fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14429" + ], + "x-ms-correlation-request-id": [ + "b5c641e7-96b6-4afc-ba2e-7c66946b1176" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185224Z:b5c641e7-96b6-4afc-ba2e-7c66946b1176" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3a9fec88-b2ec-4aa9-a9fd-f5f4cab3ee4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14428" + ], + "x-ms-correlation-request-id": [ + "5409f314-45ff-4961-8cee-ee1f58c27e85" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185224Z:5409f314-45ff-4961-8cee-ee1f58c27e85" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1764ca40-ad62-4719-951e-08c21a8ef7ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14427" + ], + "x-ms-correlation-request-id": [ + "f6243965-31d0-4413-97ea-0d6d9a25d497" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185225Z:f6243965-31d0-4413-97ea-0d6d9a25d497" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fe725006-8857-4fec-9957-a8c88a1cc460" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14426" + ], + "x-ms-correlation-request-id": [ + "fa0ffc4d-7a2e-4846-b39a-26d7a40b7a1f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185225Z:fa0ffc4d-7a2e-4846-b39a-26d7a40b7a1f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "09d830f5-10d5-46d5-83f1-538ff8185043" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14425" + ], + "x-ms-correlation-request-id": [ + "7813b864-0501-46c8-a701-85ee0cc0f193" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185225Z:7813b864-0501-46c8-a701-85ee0cc0f193" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "24827b3b-d845-4d3a-92a8-b3ba81dc6ec5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14424" + ], + "x-ms-correlation-request-id": [ + "eb3ef08d-dcaf-4a56-bd12-5fea9315a17b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185225Z:eb3ef08d-dcaf-4a56-bd12-5fea9315a17b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "62c1a873-ade2-4aad-86ea-f914d265f297" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14423" + ], + "x-ms-correlation-request-id": [ + "cb03288a-30a9-4755-b8cf-ca4eded205b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185225Z:cb03288a-30a9-4755-b8cf-ca4eded205b4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ccabdbe4-7c78-46e9-8e38-edd26f54a880" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14422" + ], + "x-ms-correlation-request-id": [ + "0b176565-c66e-4eb0-87d7-f5bad6eef3ca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185226Z:0b176565-c66e-4eb0-87d7-f5bad6eef3ca" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "73c1fe07-6b74-4089-9fda-1649db4c49ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14421" + ], + "x-ms-correlation-request-id": [ + "1188e485-3a9c-4bfe-8326-71bf5dd031c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185226Z:1188e485-3a9c-4bfe-8326-71bf5dd031c1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6514d6d0-df7b-481e-ad46-94926cd2eece" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14420" + ], + "x-ms-correlation-request-id": [ + "f8f783aa-f9bd-41ad-b398-9c8c9863ce16" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185226Z:f8f783aa-f9bd-41ad-b398-9c8c9863ce16" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44b31524-266d-4dfa-8070-420988ed6bab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14419" + ], + "x-ms-correlation-request-id": [ + "93bd1bb7-724f-45f6-b90e-63431a005993" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185226Z:93bd1bb7-724f-45f6-b90e-63431a005993" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4aa2ab9a-1c1d-4dba-a8bb-caaff2824c0a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14418" + ], + "x-ms-correlation-request-id": [ + "0e4b1639-bd5f-4cc3-8fc7-a5d6b2d64122" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185227Z:0e4b1639-bd5f-4cc3-8fc7-a5d6b2d64122" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4a224c3f-99ca-4cad-8d87-fc19e7411aa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14417" + ], + "x-ms-correlation-request-id": [ + "0732bf1a-5d15-4d80-861b-7732d531fbb8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185227Z:0732bf1a-5d15-4d80-861b-7732d531fbb8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "18388c7b-58f7-4535-bf99-8b5a8acb7bf5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14416" + ], + "x-ms-correlation-request-id": [ + "1fdce953-722d-47b5-ade9-c8db1e6103e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185227Z:1fdce953-722d-47b5-ade9-c8db1e6103e4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a4e4ec7b-aa3a-487c-95a1-f3debd2f78d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14415" + ], + "x-ms-correlation-request-id": [ + "53feb835-7c32-4561-8fb7-a1989bf0d0a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185227Z:53feb835-7c32-4561-8fb7-a1989bf0d0a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2aeea0d7-9e94-4ae5-bb7b-afa0a193c907" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14414" + ], + "x-ms-correlation-request-id": [ + "64390bb5-02e2-41b0-b97b-7ac1e0a5971b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185227Z:64390bb5-02e2-41b0-b97b-7ac1e0a5971b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1bf1d308-f7f9-418c-9e42-dd19402a519a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14413" + ], + "x-ms-correlation-request-id": [ + "0f6ec802-0aec-420a-b3fe-1cc9453c60fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185228Z:0f6ec802-0aec-420a-b3fe-1cc9453c60fd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "886bcdb4-c7c0-41b2-a3f1-ab1a38e3fd97" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14412" + ], + "x-ms-correlation-request-id": [ + "04bd8728-2a38-467a-93cd-863cf013d5a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185228Z:04bd8728-2a38-467a-93cd-863cf013d5a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3d4b80ad-bbb2-4ce3-9a99-fa641eff1ef1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14411" + ], + "x-ms-correlation-request-id": [ + "a3d28342-e0fc-4d15-b635-01277c521a4c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185228Z:a3d28342-e0fc-4d15-b635-01277c521a4c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "de67d2bc-ff7f-476f-b05b-9a8d2f9e5107" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14410" + ], + "x-ms-correlation-request-id": [ + "f4544731-e408-4a65-8d7d-85e84190b37c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185228Z:f4544731-e408-4a65-8d7d-85e84190b37c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4464bdcf-9b99-47d8-b568-9b4f4585c3a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14409" + ], + "x-ms-correlation-request-id": [ + "f83033cf-560a-45f4-b782-8f539ddbafe4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185229Z:f83033cf-560a-45f4-b782-8f539ddbafe4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "46bc0d69-dc4b-4215-9a53-4f7944e63c2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14408" + ], + "x-ms-correlation-request-id": [ + "c92d5bea-946a-4531-b981-ad441d798f82" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185229Z:c92d5bea-946a-4531-b981-ad441d798f82" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e21a57bd-09da-4225-aefe-98b339c75b58" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14407" + ], + "x-ms-correlation-request-id": [ + "73f28a12-f2a4-42c0-ad8f-fb7611450533" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185229Z:73f28a12-f2a4-42c0-ad8f-fb7611450533" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c6987acd-28c4-4e32-820d-340f95b1c819" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14406" + ], + "x-ms-correlation-request-id": [ + "e36159a8-29fb-41fb-b327-6903a2af80ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185229Z:e36159a8-29fb-41fb-b327-6903a2af80ee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9fe9e75-9406-4e23-877c-3c3510dab406" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14405" + ], + "x-ms-correlation-request-id": [ + "b71fad2b-64c0-4ab8-9d82-4a6fcd91bc91" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185229Z:b71fad2b-64c0-4ab8-9d82-4a6fcd91bc91" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e70064a6-f14b-47fc-86ee-5cf8b8ab7806" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14404" + ], + "x-ms-correlation-request-id": [ + "3305b116-a2f4-4f30-a862-6cca3d33b52b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185230Z:3305b116-a2f4-4f30-a862-6cca3d33b52b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ff9f4947-de26-4170-8c0e-cfe7fa6a4ea3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14403" + ], + "x-ms-correlation-request-id": [ + "fbe44eaa-310d-41de-99b7-ae8127de335c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185230Z:fbe44eaa-310d-41de-99b7-ae8127de335c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6cc33c38-2f07-4dfc-8501-7d3d0e6dea0f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14402" + ], + "x-ms-correlation-request-id": [ + "8dd3b1a6-0a4a-4e6c-a66c-7ed8f3d65cb6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185230Z:8dd3b1a6-0a4a-4e6c-a66c-7ed8f3d65cb6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e25e003-f906-4103-b553-f54701424e86" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14401" + ], + "x-ms-correlation-request-id": [ + "11340328-987a-40b7-8d76-a696d0917e77" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185230Z:11340328-987a-40b7-8d76-a696d0917e77" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e97b7dd9-de73-4ddf-858c-38f38f613cf4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14400" + ], + "x-ms-correlation-request-id": [ + "ab76eaff-f4c0-4e31-8759-0ec5180fd220" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185231Z:ab76eaff-f4c0-4e31-8759-0ec5180fd220" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ae545c9b-d770-403f-8ae8-adf1fcdc6c9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14399" + ], + "x-ms-correlation-request-id": [ + "6e37b24b-b3fc-4489-9aea-6b8729b7d228" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185231Z:6e37b24b-b3fc-4489-9aea-6b8729b7d228" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9d67010d-0ef2-4b28-a5a2-9aa85d405a61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14398" + ], + "x-ms-correlation-request-id": [ + "e3605fce-1b78-4fcc-a070-d0a450f019f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185231Z:e3605fce-1b78-4fcc-a070-d0a450f019f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3c5fcb8b-3f6f-4cc9-aee6-eab7302cf043" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14397" + ], + "x-ms-correlation-request-id": [ + "ee6eacd0-3a2f-4167-a63c-e6f715df4409" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185231Z:ee6eacd0-3a2f-4167-a63c-e6f715df4409" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9d03d2c-a63d-4690-9399-72e5dc9ab1f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14396" + ], + "x-ms-correlation-request-id": [ + "eb322633-205d-42c9-8f61-3f2c7913559e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185231Z:eb322633-205d-42c9-8f61-3f2c7913559e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8e574504-80a0-4b8d-853f-8eb877131e38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14395" + ], + "x-ms-correlation-request-id": [ + "0b214ecb-f189-4a37-b87b-c6d59e5e43fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185232Z:0b214ecb-f189-4a37-b87b-c6d59e5e43fb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7f730ff8-dc18-4968-a77e-873d1812bbe4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14394" + ], + "x-ms-correlation-request-id": [ + "a82fb3c1-1b7d-4288-8aa1-ddfb6ce97218" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185232Z:a82fb3c1-1b7d-4288-8aa1-ddfb6ce97218" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f37a6d84-520e-492e-b7e0-c5dedb59318c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14393" + ], + "x-ms-correlation-request-id": [ + "7cc24e3e-6cec-4051-bec6-3c1c99764b59" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185232Z:7cc24e3e-6cec-4051-bec6-3c1c99764b59" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e61a568-358a-4a92-b582-1cc3b9f792e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14392" + ], + "x-ms-correlation-request-id": [ + "22dbaede-e588-4940-8620-a2993497dedf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185232Z:22dbaede-e588-4940-8620-a2993497dedf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "022ec8f6-ab77-4b84-a528-8dcd6c1b3469" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14391" + ], + "x-ms-correlation-request-id": [ + "1637e670-b084-4f87-82b8-7a5d2f5a4f07" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185232Z:1637e670-b084-4f87-82b8-7a5d2f5a4f07" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d6fbb630-5ae4-4cf6-b9df-73c6ca3794b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14390" + ], + "x-ms-correlation-request-id": [ + "38a913d4-bed1-49ac-8f2b-aa255f5d937a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185233Z:38a913d4-bed1-49ac-8f2b-aa255f5d937a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "199e7574-119d-4171-abe6-b975bdc76db4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14389" + ], + "x-ms-correlation-request-id": [ + "9afca101-595c-41d6-8eff-e494011b8795" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185233Z:9afca101-595c-41d6-8eff-e494011b8795" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d91071dd-5c8f-4a40-b0c1-245e9746a8bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14388" + ], + "x-ms-correlation-request-id": [ + "659a98e7-0cd0-44fc-9f40-aa3a3269d630" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185233Z:659a98e7-0cd0-44fc-9f40-aa3a3269d630" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6bc704cd-9c49-4eb6-9f3e-bbff73490fbc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14387" + ], + "x-ms-correlation-request-id": [ + "64638cde-f95c-4842-8769-db97e5f2b458" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185233Z:64638cde-f95c-4842-8769-db97e5f2b458" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f59ab59f-9b26-4cc8-914a-d924de867317" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14386" + ], + "x-ms-correlation-request-id": [ + "7acb5da1-4eaf-4030-82ed-4702681b2dd5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185234Z:7acb5da1-4eaf-4030-82ed-4702681b2dd5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "abe49152-af4a-4663-8556-f7b67fa3c455" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14385" + ], + "x-ms-correlation-request-id": [ + "96a6d766-afd2-4842-ab60-a76ae6cb2c25" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185234Z:96a6d766-afd2-4842-ab60-a76ae6cb2c25" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1a129f0e-8b18-4dd0-9574-d1669544db91" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14384" + ], + "x-ms-correlation-request-id": [ + "0e1abf56-4b73-459b-b051-4e33c52c49c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185234Z:0e1abf56-4b73-459b-b051-4e33c52c49c9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5962d1fd-f467-4193-9401-6a6518759c6c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14383" + ], + "x-ms-correlation-request-id": [ + "a1afb146-7140-4313-af8e-ace997f99189" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185234Z:a1afb146-7140-4313-af8e-ace997f99189" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6211493-0db5-49a7-992f-6aee899fe573" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14382" + ], + "x-ms-correlation-request-id": [ + "1e24c7c5-20c5-4c6a-89b0-4a7e354f2666" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185235Z:1e24c7c5-20c5-4c6a-89b0-4a7e354f2666" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a11924c3-c487-4a0f-980d-9090b2c23bb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14381" + ], + "x-ms-correlation-request-id": [ + "539a563d-d8c0-4d1f-a4a3-fdf5a61d6cdf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185235Z:539a563d-d8c0-4d1f-a4a3-fdf5a61d6cdf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "112178e5-2f4e-4581-a90c-9535bc14e0c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14380" + ], + "x-ms-correlation-request-id": [ + "5880baa8-1a95-4183-9dd0-2518176b1222" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185235Z:5880baa8-1a95-4183-9dd0-2518176b1222" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b60ae8e0-306c-45ed-8dab-1197c41e234e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14379" + ], + "x-ms-correlation-request-id": [ + "fc69655c-0164-4ff8-ba60-cd86fe7722c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185235Z:fc69655c-0164-4ff8-ba60-cd86fe7722c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c5041fd1-b0fe-49a7-9acb-66e41621a8ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14378" + ], + "x-ms-correlation-request-id": [ + "fc18fa82-760d-49a0-a7b6-91c94f8eac4c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185236Z:fc18fa82-760d-49a0-a7b6-91c94f8eac4c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e3806b08-6cdf-47e8-8d8e-70d0d223515e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14377" + ], + "x-ms-correlation-request-id": [ + "9ee94aaf-42c6-402e-9686-18d360cd8a93" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185236Z:9ee94aaf-42c6-402e-9686-18d360cd8a93" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ba5a6e0-1c34-4d7f-8d63-c9b78a54c76e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14376" + ], + "x-ms-correlation-request-id": [ + "85031c5b-5c99-4f22-b6ac-bf7794523099" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185236Z:85031c5b-5c99-4f22-b6ac-bf7794523099" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2041dd08-025f-441d-b22b-12048d3309ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14375" + ], + "x-ms-correlation-request-id": [ + "e500f3ba-a28f-4b29-9163-abc59ce5c04e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185236Z:e500f3ba-a28f-4b29-9163-abc59ce5c04e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "014ac74c-642c-4c6d-9f85-b4b3fac06e05" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14374" + ], + "x-ms-correlation-request-id": [ + "f0d8743a-06ef-4c0f-a8fd-292c714a6128" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185236Z:f0d8743a-06ef-4c0f-a8fd-292c714a6128" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "436bb879-d4ad-443a-bfaa-30ec7e7e30f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14373" + ], + "x-ms-correlation-request-id": [ + "11aa846c-2a54-491d-8a0e-86f22e5a0d34" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185237Z:11aa846c-2a54-491d-8a0e-86f22e5a0d34" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "85f5039b-5223-4f86-8f19-06642f09e769" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14372" + ], + "x-ms-correlation-request-id": [ + "acf4bb03-26fc-4f26-8b98-01f6abf2ec95" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185237Z:acf4bb03-26fc-4f26-8b98-01f6abf2ec95" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "af06880d-2e45-437e-a125-906cd1aedd6b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14371" + ], + "x-ms-correlation-request-id": [ + "4416c000-5826-4c98-b945-5d3d02acdc02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185237Z:4416c000-5826-4c98-b945-5d3d02acdc02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0969938c-ed0d-483f-aef8-8d77c0485a4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14370" + ], + "x-ms-correlation-request-id": [ + "c427be4d-786d-44b9-9d81-a91f3d37de4b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185237Z:c427be4d-786d-44b9-9d81-a91f3d37de4b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5bb38562-e79c-46d3-9bb6-6456725a9639" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14369" + ], + "x-ms-correlation-request-id": [ + "59fe3b2a-f681-4938-bb95-a3b37391b607" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185237Z:59fe3b2a-f681-4938-bb95-a3b37391b607" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b075d7e7-8070-467b-a492-491ba681a95c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14368" + ], + "x-ms-correlation-request-id": [ + "4b787875-e22a-4685-9b30-519051d255f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185238Z:4b787875-e22a-4685-9b30-519051d255f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "46f52a33-6ebf-4237-be21-711133b0577d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14367" + ], + "x-ms-correlation-request-id": [ + "479a47e8-6c57-464d-8eb2-82b3fff619bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185238Z:479a47e8-6c57-464d-8eb2-82b3fff619bc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6243084-f2a1-4ef7-a1dc-806475b7da17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14366" + ], + "x-ms-correlation-request-id": [ + "736cafb6-de89-4bb0-af52-6e5c9b8ead9e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185238Z:736cafb6-de89-4bb0-af52-6e5c9b8ead9e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "003b92e7-a5ca-4eab-a61a-21c52f6ab601" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14365" + ], + "x-ms-correlation-request-id": [ + "db5f1d12-e2f3-4bdf-8cce-8d6fa994176a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185238Z:db5f1d12-e2f3-4bdf-8cce-8d6fa994176a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d9f2221b-604f-4655-b0bd-9060e589e870" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14364" + ], + "x-ms-correlation-request-id": [ + "a01fd965-d7ad-4ac7-8b26-3346923a9cca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185239Z:a01fd965-d7ad-4ac7-8b26-3346923a9cca" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0332eabf-38c2-46b0-9ef0-e0fa3b5ec37d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14363" + ], + "x-ms-correlation-request-id": [ + "8b77cf2e-56cf-4d53-8b17-a28210192160" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185239Z:8b77cf2e-56cf-4d53-8b17-a28210192160" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "37ac6ba8-c087-4bd2-8258-ed75aa28b169" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14362" + ], + "x-ms-correlation-request-id": [ + "5ff22273-1fd5-4637-a9b6-ab5dcf394c71" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185239Z:5ff22273-1fd5-4637-a9b6-ab5dcf394c71" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "90cd1881-173d-4db6-a047-a7b034a5b94e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14361" + ], + "x-ms-correlation-request-id": [ + "a9794f8a-3dd0-4724-837a-22d1c340dfd8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185239Z:a9794f8a-3dd0-4724-837a-22d1c340dfd8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "68354a2a-57cb-4ce0-9ed6-68f2e5414edb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14360" + ], + "x-ms-correlation-request-id": [ + "8ad2221c-3d95-47bd-bcb2-d5564ecc977d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185239Z:8ad2221c-3d95-47bd-bcb2-d5564ecc977d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bfdf22d3-7903-4d01-9dff-5185bb727cf7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14359" + ], + "x-ms-correlation-request-id": [ + "6e9644d6-a86d-4b1c-986c-746e56500909" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185240Z:6e9644d6-a86d-4b1c-986c-746e56500909" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "40d701cd-d155-4d97-9995-3add0c8b6c1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14358" + ], + "x-ms-correlation-request-id": [ + "706a3c49-e0c6-435f-92d8-ff2b0d6e5757" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185240Z:706a3c49-e0c6-435f-92d8-ff2b0d6e5757" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8b717663-0bc4-4b67-a24e-0689a6f6c881" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14357" + ], + "x-ms-correlation-request-id": [ + "4b5aeb22-5fa7-4042-9a01-c427bd83fb8f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185240Z:4b5aeb22-5fa7-4042-9a01-c427bd83fb8f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aa1216ac-c881-4ab9-893d-6575c876a822" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14356" + ], + "x-ms-correlation-request-id": [ + "db100ad0-c742-487c-b04c-47a4d3322925" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185240Z:db100ad0-c742-487c-b04c-47a4d3322925" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a42712f5-204d-4732-9972-8feef6a9736b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14355" + ], + "x-ms-correlation-request-id": [ + "b7644771-144a-4da8-880c-c881bbdd3473" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185241Z:b7644771-144a-4da8-880c-c881bbdd3473" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a9f1b1e5-851a-48c3-ba28-281a0074df17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14354" + ], + "x-ms-correlation-request-id": [ + "22cd11c6-fa6d-40a8-9b17-0ae8bbb34ea6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185241Z:22cd11c6-fa6d-40a8-9b17-0ae8bbb34ea6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e5ef268-47ca-44a5-8863-f71c2be1b258" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14353" + ], + "x-ms-correlation-request-id": [ + "aee61b97-e3f1-4026-a74e-98a4e22afab2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185241Z:aee61b97-e3f1-4026-a74e-98a4e22afab2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "494e5589-0754-4b5c-940e-55f3b369afca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14352" + ], + "x-ms-correlation-request-id": [ + "905fee99-c25a-4b24-ab8b-b9bb602cdc9d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185241Z:905fee99-c25a-4b24-ab8b-b9bb602cdc9d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "905a7ef1-9534-4ffa-9ac3-d5707d5d0214" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14351" + ], + "x-ms-correlation-request-id": [ + "9179ec2a-2c34-438f-918b-0656e569fe07" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185242Z:9179ec2a-2c34-438f-918b-0656e569fe07" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "815423be-b3ce-4189-b5b8-1c4ec96097a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14350" + ], + "x-ms-correlation-request-id": [ + "3f3217cd-5f10-413c-ad69-5d2a324b94d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185242Z:3f3217cd-5f10-413c-ad69-5d2a324b94d9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c9a60960-45ae-42ad-a558-7dcaae2ea854" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14349" + ], + "x-ms-correlation-request-id": [ + "d80a6e72-4052-4336-b176-f5022c10a4c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185242Z:d80a6e72-4052-4336-b176-f5022c10a4c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a838b4f4-b3a4-4ce8-ac97-4559e1f75af6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14348" + ], + "x-ms-correlation-request-id": [ + "456ae99a-ef55-40e8-88b7-1edcc8546b43" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185242Z:456ae99a-ef55-40e8-88b7-1edcc8546b43" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f788c55b-046b-49e1-b18c-924ed10c74cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14347" + ], + "x-ms-correlation-request-id": [ + "b06de6a7-4876-41af-bc41-4304dae589f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185242Z:b06de6a7-4876-41af-bc41-4304dae589f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "86f61925-08e3-43a1-b58a-d1c5bd1222a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14346" + ], + "x-ms-correlation-request-id": [ + "7616980b-5ee1-4ef1-ae02-6f235824f47f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185243Z:7616980b-5ee1-4ef1-ae02-6f235824f47f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "49d62519-446e-4813-88d9-198528684685" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14345" + ], + "x-ms-correlation-request-id": [ + "7ff9bb65-c80a-4982-9b7d-6658f5edf159" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185243Z:7ff9bb65-c80a-4982-9b7d-6658f5edf159" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a5344fe0-58ee-482f-9275-c3ede24f8d72" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14344" + ], + "x-ms-correlation-request-id": [ + "f34bfeb7-4bd0-422e-8246-b6fb6e78da2d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185243Z:f34bfeb7-4bd0-422e-8246-b6fb6e78da2d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6cd5e33b-e847-4799-b4dc-8d38fc174ad5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14343" + ], + "x-ms-correlation-request-id": [ + "cab77f5a-0805-466e-8446-9d88770b32b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185243Z:cab77f5a-0805-466e-8446-9d88770b32b9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d4445391-8ce2-4631-b10b-a63f641f12e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14342" + ], + "x-ms-correlation-request-id": [ + "8f3688bd-338c-450b-85d1-4a8c393f58df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185244Z:8f3688bd-338c-450b-85d1-4a8c393f58df" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a2d5d39b-c5c4-42f6-8224-43655fca0629" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14341" + ], + "x-ms-correlation-request-id": [ + "1b7b3113-99a8-43bf-bed8-448108c6f5fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185244Z:1b7b3113-99a8-43bf-bed8-448108c6f5fd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "36295f68-2b1e-4fd0-ae7e-9fc7befcdf7e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14340" + ], + "x-ms-correlation-request-id": [ + "2de9542b-9f50-404a-9ebd-fc2b67743ad8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185244Z:2de9542b-9f50-404a-9ebd-fc2b67743ad8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3ca678c3-068b-4d3a-bbd1-94c73bf90184" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14339" + ], + "x-ms-correlation-request-id": [ + "77b11fde-31f6-484b-901a-f5a73121bbe4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185244Z:77b11fde-31f6-484b-901a-f5a73121bbe4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "11273211-fcd0-496f-bdef-06cef57d36b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14338" + ], + "x-ms-correlation-request-id": [ + "946377ca-dc3e-4f44-aed5-fbf8c92f783d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185244Z:946377ca-dc3e-4f44-aed5-fbf8c92f783d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0e6e301c-3d44-4d61-a5ee-ebaa210535d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14337" + ], + "x-ms-correlation-request-id": [ + "124ab90a-ec9f-451e-a483-b2b319adf44c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185245Z:124ab90a-ec9f-451e-a483-b2b319adf44c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ec7280f-b84f-4aca-b906-dec2c933f837" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14336" + ], + "x-ms-correlation-request-id": [ + "9b4b8e3e-0cbc-473d-9e6e-9948ae1d59b2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185245Z:9b4b8e3e-0cbc-473d-9e6e-9948ae1d59b2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5211851-cbc0-4f7d-b3d8-a1409ce3e1ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14335" + ], + "x-ms-correlation-request-id": [ + "93c7c388-a6fd-4999-8a6a-9d3ae5055a5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185245Z:93c7c388-a6fd-4999-8a6a-9d3ae5055a5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "980a912c-6a34-420f-aa6d-aba0948868b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14334" + ], + "x-ms-correlation-request-id": [ + "93d1c6ee-ce71-4df2-a9d0-1b51b6751835" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185245Z:93d1c6ee-ce71-4df2-a9d0-1b51b6751835" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b8b9221b-3eee-427c-bc1e-90c0ee01de0d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14333" + ], + "x-ms-correlation-request-id": [ + "2bdd76df-9d0d-4a62-b52b-4417c1131ee4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185246Z:2bdd76df-9d0d-4a62-b52b-4417c1131ee4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bff51d82-3002-480c-a5ee-c2a977fdaf8c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14332" + ], + "x-ms-correlation-request-id": [ + "17d1bd6d-9fb2-427e-a721-e900c7618423" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185246Z:17d1bd6d-9fb2-427e-a721-e900c7618423" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ddf9c596-4a31-4d6a-bc7a-2b68721f52d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14331" + ], + "x-ms-correlation-request-id": [ + "695f603d-1d70-4d1c-8a74-a9c33a331f22" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185246Z:695f603d-1d70-4d1c-8a74-a9c33a331f22" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e6f8df8-a307-40b5-b9a2-fe6f1e247763" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14330" + ], + "x-ms-correlation-request-id": [ + "b1a3852f-6732-4350-9271-544a702170a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185246Z:b1a3852f-6732-4350-9271-544a702170a0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3be73241-4a87-44f6-9303-b7eb8691ad85" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14329" + ], + "x-ms-correlation-request-id": [ + "1d2bb49f-5e91-4147-be19-0f9a3de061c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185247Z:1d2bb49f-5e91-4147-be19-0f9a3de061c1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e96440d3-f846-4efa-9087-e155dd9b019e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14328" + ], + "x-ms-correlation-request-id": [ + "29df0d69-57f3-456e-a3b0-5c938ad70164" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185247Z:29df0d69-57f3-456e-a3b0-5c938ad70164" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4ba1146b-1efb-4c8b-b215-ab99e3747a09" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14327" + ], + "x-ms-correlation-request-id": [ + "8197ec24-ce5e-4b1f-8910-af1523332e48" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185247Z:8197ec24-ce5e-4b1f-8910-af1523332e48" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "350613d8-c467-45cc-b77c-8ffe53465cbe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14326" + ], + "x-ms-correlation-request-id": [ + "df296b70-73fb-48b8-a97c-3aa23843d875" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185247Z:df296b70-73fb-48b8-a97c-3aa23843d875" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "13964a42-18c3-426a-a746-02b25e952654" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14325" + ], + "x-ms-correlation-request-id": [ + "b5cd1e9f-503f-466f-ad5f-4badde5cbff7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185247Z:b5cd1e9f-503f-466f-ad5f-4badde5cbff7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "efddd7db-9efe-45b6-8cc0-b08be2e05c31" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14324" + ], + "x-ms-correlation-request-id": [ + "d1e691cf-0a8d-4409-aa3a-6eec4b7e7bb4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185248Z:d1e691cf-0a8d-4409-aa3a-6eec4b7e7bb4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "985ba145-6adf-46d5-9e95-dadc14bce8f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14323" + ], + "x-ms-correlation-request-id": [ + "c76286c1-e9c6-4bbd-8b19-95616531de1e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185248Z:c76286c1-e9c6-4bbd-8b19-95616531de1e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ccd04bf4-0bf3-47af-9dd6-4a6dec31c2b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14322" + ], + "x-ms-correlation-request-id": [ + "2a381f51-9cff-4639-ac35-2d6ef8222f1d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185248Z:2a381f51-9cff-4639-ac35-2d6ef8222f1d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7d0c4aef-563a-4b71-829a-efbc16f90860" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14321" + ], + "x-ms-correlation-request-id": [ + "ca3bfc9b-d9e1-4a9c-af45-c74ffd5c7ad7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185248Z:ca3bfc9b-d9e1-4a9c-af45-c74ffd5c7ad7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e8e9edc-67b4-47d7-8cfb-eceb83e12b83" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14320" + ], + "x-ms-correlation-request-id": [ + "3c2e7f28-6d0e-4bd1-8a40-3a0914fe659c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185248Z:3c2e7f28-6d0e-4bd1-8a40-3a0914fe659c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8bd42fba-0149-44e8-9efa-5de61e7e0529" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14319" + ], + "x-ms-correlation-request-id": [ + "6fcf57f6-fba7-454c-b698-944dc31e884e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185249Z:6fcf57f6-fba7-454c-b698-944dc31e884e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e93d31eb-5479-4c28-b71e-7729f6c63c07" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14318" + ], + "x-ms-correlation-request-id": [ + "af5ce96a-fd63-4cb9-a30a-444e56097c53" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185249Z:af5ce96a-fd63-4cb9-a30a-444e56097c53" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a85bd25d-bc99-47f6-8e97-5dd2c38b5c10" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14317" + ], + "x-ms-correlation-request-id": [ + "8a7a4ab2-1808-4352-a58c-f57069535321" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185249Z:8a7a4ab2-1808-4352-a58c-f57069535321" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "93843b49-6035-4cf5-bcc1-13ef2276e5f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14316" + ], + "x-ms-correlation-request-id": [ + "b1012291-1b08-42b6-a1a7-c21cdf173d5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185249Z:b1012291-1b08-42b6-a1a7-c21cdf173d5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "349ba55c-11bf-4618-9c74-8c759e14124b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14315" + ], + "x-ms-correlation-request-id": [ + "12235b79-9f07-41f0-b2f4-4a8c278a6df9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185250Z:12235b79-9f07-41f0-b2f4-4a8c278a6df9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d269375e-161d-43f5-89b5-1252facea25b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14314" + ], + "x-ms-correlation-request-id": [ + "723aaaa1-7b8d-4ffc-9289-aa2a826ba2e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185250Z:723aaaa1-7b8d-4ffc-9289-aa2a826ba2e2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "52dd7e07-102d-4731-83d4-58fe2df6bfa6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14313" + ], + "x-ms-correlation-request-id": [ + "c9f11535-7681-4672-8c98-ef45d70ba850" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185250Z:c9f11535-7681-4672-8c98-ef45d70ba850" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "260cf28e-65eb-46bd-a20b-8b16dfca2f2a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14312" + ], + "x-ms-correlation-request-id": [ + "54cd3ae6-aa32-4e4a-9369-e5725b611cec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185250Z:54cd3ae6-aa32-4e4a-9369-e5725b611cec" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f02dca30-a802-4c0d-bd6e-4c1d2b834e49" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14311" + ], + "x-ms-correlation-request-id": [ + "0bf2d91b-4650-48d0-acc5-c6d00ba73c83" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185251Z:0bf2d91b-4650-48d0-acc5-c6d00ba73c83" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "70409511-878a-45d9-bdf7-107010188722" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14310" + ], + "x-ms-correlation-request-id": [ + "5636ea12-c142-4f0e-aad7-e0b86804c677" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185251Z:5636ea12-c142-4f0e-aad7-e0b86804c677" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6184fa61-94a2-44e9-a6ac-26ded536c9de" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14309" + ], + "x-ms-correlation-request-id": [ + "fbd83b5f-8564-4332-af10-94bf6fe8c7fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185251Z:fbd83b5f-8564-4332-af10-94bf6fe8c7fd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c7ddd682-7ff9-4ce0-9608-c66dc1c6808d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14308" + ], + "x-ms-correlation-request-id": [ + "92b42de8-61fc-4a13-8d64-183724e3b4f9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185251Z:92b42de8-61fc-4a13-8d64-183724e3b4f9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4f90089a-d8a9-4ac3-84ae-0fc1a0a124e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14307" + ], + "x-ms-correlation-request-id": [ + "73b18e97-1661-454b-a056-2e275abfbe49" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185252Z:73b18e97-1661-454b-a056-2e275abfbe49" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "19a55852-c453-4602-aa7e-c0bb81c40681" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14306" + ], + "x-ms-correlation-request-id": [ + "83893498-1007-43ee-ba1a-240c5bd94fd9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185252Z:83893498-1007-43ee-ba1a-240c5bd94fd9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b78246ad-c640-4115-936e-4027e1118bc2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14305" + ], + "x-ms-correlation-request-id": [ + "050883f9-dcea-497e-a4fd-d98bfa8cc608" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185252Z:050883f9-dcea-497e-a4fd-d98bfa8cc608" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "049f71b3-ed8d-4c57-bf6d-470ee7003e5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14304" + ], + "x-ms-correlation-request-id": [ + "3426e919-6636-41dc-a3f8-c3f88b930361" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185252Z:3426e919-6636-41dc-a3f8-c3f88b930361" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e903ce2-0449-4cb8-b72e-a1701ea662fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14303" + ], + "x-ms-correlation-request-id": [ + "a28f7f81-c641-4419-b980-d11c902ba592" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185252Z:a28f7f81-c641-4419-b980-d11c902ba592" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6b2ba5ba-ab5d-4917-b7d2-baa1ff9a1304" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14302" + ], + "x-ms-correlation-request-id": [ + "a51b705b-c83c-4d94-a28f-f04f1f0633c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185253Z:a51b705b-c83c-4d94-a28f-f04f1f0633c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "179e07a6-dd0a-46a1-a66d-aa862e00c9fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14301" + ], + "x-ms-correlation-request-id": [ + "f2ce737f-d36e-4a7f-8450-45d31e9e3267" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185253Z:f2ce737f-d36e-4a7f-8450-45d31e9e3267" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d2f8de78-69f3-4232-b7b4-5f21352aa7ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14300" + ], + "x-ms-correlation-request-id": [ + "4b245717-69b5-4b02-be45-910b79fabac9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185253Z:4b245717-69b5-4b02-be45-910b79fabac9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "10ff1c69-3ebd-4964-9e4b-8e05b305466f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14299" + ], + "x-ms-correlation-request-id": [ + "3534ed18-aabe-4358-9201-bfbb04b37531" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185253Z:3534ed18-aabe-4358-9201-bfbb04b37531" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8270ff39-7f47-4ad0-a4a9-d557b92a0b67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14298" + ], + "x-ms-correlation-request-id": [ + "6da33786-0c97-4bbd-9daa-4e4b06abe6a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185254Z:6da33786-0c97-4bbd-9daa-4e4b06abe6a0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4afa5c5d-0e0e-457a-9e95-898ec42ddc17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14297" + ], + "x-ms-correlation-request-id": [ + "85bea87e-3bc6-439f-b500-177ab12375bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185254Z:85bea87e-3bc6-439f-b500-177ab12375bc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1f3c7c6e-24fa-4070-a65a-7468aea5809d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14296" + ], + "x-ms-correlation-request-id": [ + "83eb5395-28e3-42ef-9283-ac1ff56a8463" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185254Z:83eb5395-28e3-42ef-9283-ac1ff56a8463" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4d9b1d5c-8885-4054-8af8-0b9a4b02c213" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14295" + ], + "x-ms-correlation-request-id": [ + "3b242096-5fb4-4957-b1b9-9ff8753bead9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185254Z:3b242096-5fb4-4957-b1b9-9ff8753bead9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4820d16c-d348-4c2a-9dc7-a27a9ad73029" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14294" + ], + "x-ms-correlation-request-id": [ + "6b8ed003-2df6-494b-a8af-6c800ed68af9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185255Z:6b8ed003-2df6-494b-a8af-6c800ed68af9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "19423d13-2a07-475e-861a-d1320a03cd7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14293" + ], + "x-ms-correlation-request-id": [ + "0182b32d-9cb9-4bc6-9e2d-3e8f7f46afeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185255Z:0182b32d-9cb9-4bc6-9e2d-3e8f7f46afeb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ae17693c-56d2-49a3-a033-0a1af44077df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14292" + ], + "x-ms-correlation-request-id": [ + "6187ac1e-7b21-4fc5-b54e-7602e5956691" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185255Z:6187ac1e-7b21-4fc5-b54e-7602e5956691" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "918251ff-145d-4aea-94dd-2e21cf3e2e7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14291" + ], + "x-ms-correlation-request-id": [ + "a3f4966e-da79-4843-8137-bbe3007d7e50" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185255Z:a3f4966e-da79-4843-8137-bbe3007d7e50" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9a4642c-bc14-4886-b68a-1c0a36d6d47d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14290" + ], + "x-ms-correlation-request-id": [ + "64c1d724-2fbe-44fd-a4f3-89bc7f571bb7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185255Z:64c1d724-2fbe-44fd-a4f3-89bc7f571bb7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "13d06802-5c77-4809-9326-80a6b6b48b94" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14289" + ], + "x-ms-correlation-request-id": [ + "1b355650-1fa2-40ec-8a5e-730071d90535" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185256Z:1b355650-1fa2-40ec-8a5e-730071d90535" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f36d60c6-4feb-4915-855f-85a3f6138c05" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14288" + ], + "x-ms-correlation-request-id": [ + "055961da-13f9-4cbf-a4d7-172366d2123c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185256Z:055961da-13f9-4cbf-a4d7-172366d2123c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "73d40e08-0097-42b0-a7ef-81c0c64f1564" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14287" + ], + "x-ms-correlation-request-id": [ + "21290d6f-15c5-457f-ab55-4b6980499aa2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185256Z:21290d6f-15c5-457f-ab55-4b6980499aa2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9c49c25-6eb8-4cd9-a76d-25d9a308ef6b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14286" + ], + "x-ms-correlation-request-id": [ + "dbdf887b-ff36-48d4-b29f-dc0476d4271d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185256Z:dbdf887b-ff36-48d4-b29f-dc0476d4271d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d414dcf-ca87-4a6f-bf14-059a24033241" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14285" + ], + "x-ms-correlation-request-id": [ + "9bc05faa-f977-46b8-a9d5-47f17651b123" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185257Z:9bc05faa-f977-46b8-a9d5-47f17651b123" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e52368f8-5e91-48e2-a24f-4593cb5193f8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14284" + ], + "x-ms-correlation-request-id": [ + "054ff99a-6a0f-4c68-bf66-14edec7396e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185257Z:054ff99a-6a0f-4c68-bf66-14edec7396e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5ebf34a6-ad3d-4b34-8851-6a215b4e3697" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14283" + ], + "x-ms-correlation-request-id": [ + "26cd3a99-5c78-4ccd-be45-3c2dd4d12293" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185257Z:26cd3a99-5c78-4ccd-be45-3c2dd4d12293" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7ae1de38-f8f9-4c4f-a54b-69c6a9ce5f8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14282" + ], + "x-ms-correlation-request-id": [ + "ad71d57a-d4ac-4f2a-a577-79e2d479a262" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185257Z:ad71d57a-d4ac-4f2a-a577-79e2d479a262" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "72b7b5f6-18ef-470a-a746-91ffde53efef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14281" + ], + "x-ms-correlation-request-id": [ + "9f66a1d9-73f1-4e74-bbbb-f00188260ea3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185258Z:9f66a1d9-73f1-4e74-bbbb-f00188260ea3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "51708aab-b4df-4558-bad8-aea070bfdd0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14280" + ], + "x-ms-correlation-request-id": [ + "20dc7a65-60b0-44ee-8959-6eab1d155cd4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185258Z:20dc7a65-60b0-44ee-8959-6eab1d155cd4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3304622b-b1e0-4d31-af60-3cbc3d9b5b30" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14279" + ], + "x-ms-correlation-request-id": [ + "a109df84-7c2b-4432-acea-92001ebdc024" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185258Z:a109df84-7c2b-4432-acea-92001ebdc024" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f9cded9c-e4bc-4935-af4f-34dee031891e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14278" + ], + "x-ms-correlation-request-id": [ + "086783ec-2781-4dcc-a0be-4f25cd642d7b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185258Z:086783ec-2781-4dcc-a0be-4f25cd642d7b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aaaa4aa8-011b-4812-8a67-331df7aac913" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14277" + ], + "x-ms-correlation-request-id": [ + "3de0c72c-be6d-45ee-a9ef-3d8365164412" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185258Z:3de0c72c-be6d-45ee-a9ef-3d8365164412" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3bdf5cb9-9d69-4227-9e56-bbfb24246dc6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14276" + ], + "x-ms-correlation-request-id": [ + "db699701-9e2e-4551-9fdd-745fefc06c7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185259Z:db699701-9e2e-4551-9fdd-745fefc06c7d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6385844f-18f1-4532-acd4-3906a2643968" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14275" + ], + "x-ms-correlation-request-id": [ + "0d0f4d77-8962-46fb-80bf-37ed902ca5e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185259Z:0d0f4d77-8962-46fb-80bf-37ed902ca5e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ccde774d-5c76-4452-9538-51c94e091bfd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14274" + ], + "x-ms-correlation-request-id": [ + "e0aa6269-c239-444f-8185-ff62e1d29a4f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185259Z:e0aa6269-c239-444f-8185-ff62e1d29a4f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "08dfb114-c3e2-4eb7-9623-ac4cc608cf5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14273" + ], + "x-ms-correlation-request-id": [ + "be282077-f1e5-4ece-b81c-f995483c3848" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185259Z:be282077-f1e5-4ece-b81c-f995483c3848" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2470abad-9d58-42f0-90d7-e6b695e2e5f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14272" + ], + "x-ms-correlation-request-id": [ + "0a8f745d-0339-4bf0-91f9-8b9a6bd07dba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185300Z:0a8f745d-0339-4bf0-91f9-8b9a6bd07dba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f0afb0d0-2283-4809-b08b-31a6fb2b8250" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14271" + ], + "x-ms-correlation-request-id": [ + "8332b35a-16e4-48ac-8d62-7564af3c875d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185300Z:8332b35a-16e4-48ac-8d62-7564af3c875d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6bd78dc-a0de-4cba-a437-311c5ccf1bac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14270" + ], + "x-ms-correlation-request-id": [ + "a2c3d869-b744-49c0-a8cd-e1933df22e2d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185300Z:a2c3d869-b744-49c0-a8cd-e1933df22e2d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:52:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e8b3ba4-0f71-47e8-8e12-1c7bdc33723d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14269" + ], + "x-ms-correlation-request-id": [ + "f65ec359-d92c-4aae-ae73-dc8b85b9f374" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185300Z:f65ec359-d92c-4aae-ae73-dc8b85b9f374" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04cb8d66-aee6-4406-a60f-e7b0349abcae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14268" + ], + "x-ms-correlation-request-id": [ + "4fbba361-0167-4f07-aba8-ba9facad10d4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185301Z:4fbba361-0167-4f07-aba8-ba9facad10d4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "148c6bc3-0c18-41df-903a-0127ec6a94b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14267" + ], + "x-ms-correlation-request-id": [ + "e4b41586-961b-4878-ac50-44b32bdcef9f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185301Z:e4b41586-961b-4878-ac50-44b32bdcef9f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2df6feb3-c018-479b-aa9c-0f536380bd4e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14266" + ], + "x-ms-correlation-request-id": [ + "bfa230c4-3000-4bb2-bd7d-6a0c569d863c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185301Z:bfa230c4-3000-4bb2-bd7d-6a0c569d863c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0582e0f7-fabc-4201-a353-aad663cbf1ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14265" + ], + "x-ms-correlation-request-id": [ + "993acf75-3aa6-418a-9493-8042f38b6cd5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185301Z:993acf75-3aa6-418a-9493-8042f38b6cd5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "af8c88d2-c57b-41ca-bc25-ec2b14bf4f97" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14264" + ], + "x-ms-correlation-request-id": [ + "b2b03bcf-ca22-44b4-9ddc-afce3ed39934" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185302Z:b2b03bcf-ca22-44b4-9ddc-afce3ed39934" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "91c58b6c-7a26-4b66-b802-161416bb0e9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14263" + ], + "x-ms-correlation-request-id": [ + "38985e21-8ec2-4cfe-8a11-6a3bdd1298cb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185302Z:38985e21-8ec2-4cfe-8a11-6a3bdd1298cb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "883dc88a-6679-4cb4-b8fe-a4646c8d4109" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14262" + ], + "x-ms-correlation-request-id": [ + "a5c0b365-deb8-4ffa-819e-139abcbe7b58" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185302Z:a5c0b365-deb8-4ffa-819e-139abcbe7b58" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0356f88e-176a-47b5-8946-2dfccc3952bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14261" + ], + "x-ms-correlation-request-id": [ + "e051da65-0258-491d-a7ba-910eaca7bdf0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185302Z:e051da65-0258-491d-a7ba-910eaca7bdf0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b814fb68-f81f-4517-a07d-6709dd5688f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14260" + ], + "x-ms-correlation-request-id": [ + "d68e4e18-7eb5-4034-96c2-f6a56b5d0886" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185302Z:d68e4e18-7eb5-4034-96c2-f6a56b5d0886" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e3e75efc-5f02-4b77-b659-e78b80db2595" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14259" + ], + "x-ms-correlation-request-id": [ + "cbeea232-5ae8-4d37-8719-25323f2733f6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185303Z:cbeea232-5ae8-4d37-8719-25323f2733f6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "76b7ca75-652c-483a-b261-fa1dea790038" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14258" + ], + "x-ms-correlation-request-id": [ + "b2971403-9595-4716-b1da-4295c8df26c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185303Z:b2971403-9595-4716-b1da-4295c8df26c3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "56ce3c35-7221-49b5-ac6c-c5c94562e298" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14257" + ], + "x-ms-correlation-request-id": [ + "951a9001-d9ca-40b1-91c2-19e6fe384da9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185303Z:951a9001-d9ca-40b1-91c2-19e6fe384da9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "632772ad-a779-463c-b62d-6ff19d3edab0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14256" + ], + "x-ms-correlation-request-id": [ + "27593b9f-c5e1-47e8-b47a-38959a90935e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185303Z:27593b9f-c5e1-47e8-b47a-38959a90935e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "76ba8b63-0b7c-4563-a6ab-bb3dfce98dc1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14255" + ], + "x-ms-correlation-request-id": [ + "1c9003c7-fe28-49dc-8bd0-206365712977" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185304Z:1c9003c7-fe28-49dc-8bd0-206365712977" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aa6f8128-d926-437e-ba43-04b8e104a206" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14254" + ], + "x-ms-correlation-request-id": [ + "055f1a02-402c-43d4-be44-40618855f3f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185304Z:055f1a02-402c-43d4-be44-40618855f3f7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "59e18ead-cf86-4ada-b732-743de13eb166" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14253" + ], + "x-ms-correlation-request-id": [ + "10783016-52d1-46be-86fb-48ec94f405d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185304Z:10783016-52d1-46be-86fb-48ec94f405d0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2d642bf9-4874-4062-bdd8-2960a7d3fedf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14252" + ], + "x-ms-correlation-request-id": [ + "8068f8a0-7ffe-4c81-a59d-81156564b726" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185304Z:8068f8a0-7ffe-4c81-a59d-81156564b726" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "91807644-16a5-4e14-a31f-a92754f0494f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14251" + ], + "x-ms-correlation-request-id": [ + "3a51969d-4292-4dd2-b243-02afa9c6cef3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185304Z:3a51969d-4292-4dd2-b243-02afa9c6cef3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e27572d-f8d7-4431-939b-13381174d3b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14250" + ], + "x-ms-correlation-request-id": [ + "0e97efca-b5a3-4409-8aff-1a79ce1cb93b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185305Z:0e97efca-b5a3-4409-8aff-1a79ce1cb93b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f462f8a4-4231-4efb-8ed7-40af76f38560" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14249" + ], + "x-ms-correlation-request-id": [ + "c7424363-5cd3-4d58-866d-4f52af0102fe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185305Z:c7424363-5cd3-4d58-866d-4f52af0102fe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "45c9d007-0ac8-4098-9f34-545b6da3fcb1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14248" + ], + "x-ms-correlation-request-id": [ + "5cbd8094-f0fd-4fa1-afe9-53d07c23ad33" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185305Z:5cbd8094-f0fd-4fa1-afe9-53d07c23ad33" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4f512ea6-6a00-4ad2-b3bf-a930ec124b75" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14247" + ], + "x-ms-correlation-request-id": [ + "f13c95ca-e8cf-455a-9e54-58e0dfca29ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185306Z:f13c95ca-e8cf-455a-9e54-58e0dfca29ac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "102a0740-c67b-4cef-977c-ff7e048ef4bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14246" + ], + "x-ms-correlation-request-id": [ + "680ccec2-67e6-496e-bff6-2d597dd1bc45" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185306Z:680ccec2-67e6-496e-bff6-2d597dd1bc45" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "99e063d9-c3a3-4001-9120-3dd91914cea1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14245" + ], + "x-ms-correlation-request-id": [ + "809e12e4-07e0-4234-bd26-4b9731c75320" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185306Z:809e12e4-07e0-4234-bd26-4b9731c75320" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48a44faf-18aa-4b35-9732-354f86108031" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14244" + ], + "x-ms-correlation-request-id": [ + "0b54b16b-f6e7-4bbd-b75f-2cdd2005db7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185306Z:0b54b16b-f6e7-4bbd-b75f-2cdd2005db7d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dbfb90e8-6787-4b15-92d4-814a2e3d341e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14243" + ], + "x-ms-correlation-request-id": [ + "b2cafd2a-4514-42e8-9791-4f650d4a96be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185307Z:b2cafd2a-4514-42e8-9791-4f650d4a96be" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c5a90aa-8f1a-47c9-ab09-f844f9cd795e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14242" + ], + "x-ms-correlation-request-id": [ + "2c28b792-8626-4979-a095-b9113ca2946a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185307Z:2c28b792-8626-4979-a095-b9113ca2946a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "35c23d5d-9169-4850-8758-ffa09bb85ece" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14241" + ], + "x-ms-correlation-request-id": [ + "ecf573df-6b10-4146-86c6-a5b770d10bfc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185307Z:ecf573df-6b10-4146-86c6-a5b770d10bfc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5b9d1941-0495-4cbb-9d81-a1daa8f2cb6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14240" + ], + "x-ms-correlation-request-id": [ + "48ed9de9-6403-41dd-9b49-e97fa2a5b729" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185307Z:48ed9de9-6403-41dd-9b49-e97fa2a5b729" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d927a474-75eb-41a9-bded-2aa1406512d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14239" + ], + "x-ms-correlation-request-id": [ + "468615f4-42aa-4ad7-b327-812399ea24f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185307Z:468615f4-42aa-4ad7-b327-812399ea24f7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "be221595-5dc0-43af-8ef7-e90a651a9995" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14238" + ], + "x-ms-correlation-request-id": [ + "ac366aa4-4f6f-4a80-8653-820f24855ce0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185308Z:ac366aa4-4f6f-4a80-8653-820f24855ce0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3655118f-7729-4513-8599-dfa54f99cbbe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14237" + ], + "x-ms-correlation-request-id": [ + "69ae5b01-7546-4703-9d19-c7d268110c09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185308Z:69ae5b01-7546-4703-9d19-c7d268110c09" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8b5a442f-56ce-4309-b2ff-c4a3612ea9f6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14236" + ], + "x-ms-correlation-request-id": [ + "74b3f2fa-a82e-44ef-8a48-b5c146468b2a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185308Z:74b3f2fa-a82e-44ef-8a48-b5c146468b2a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d66257fa-b2eb-4416-a72f-cff17a1795a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14235" + ], + "x-ms-correlation-request-id": [ + "bc3cc951-b006-45e3-8533-b68f03f24079" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185308Z:bc3cc951-b006-45e3-8533-b68f03f24079" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "06b25f81-4903-42f2-8ec6-426bddf2f14e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14234" + ], + "x-ms-correlation-request-id": [ + "b3f35918-9843-430b-840a-8277933b17ec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185309Z:b3f35918-9843-430b-840a-8277933b17ec" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "afa7d481-16fa-4b0f-8ea2-08a77d5cd309" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14233" + ], + "x-ms-correlation-request-id": [ + "625a3760-c85d-4d55-affb-f63f3ce194bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185309Z:625a3760-c85d-4d55-affb-f63f3ce194bb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c7fd025-5660-434a-a66b-558fa52e89a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14232" + ], + "x-ms-correlation-request-id": [ + "f8f0e568-8f3d-4b97-997e-28a54e2bc631" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185309Z:f8f0e568-8f3d-4b97-997e-28a54e2bc631" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8945d18a-30a7-4db4-8d7d-e1c760c13dc2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14231" + ], + "x-ms-correlation-request-id": [ + "9bc1eab8-d130-48d6-8586-a411fc1aac3c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185309Z:9bc1eab8-d130-48d6-8586-a411fc1aac3c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "711e3ac1-4d36-4fad-a868-0be35d205e3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14230" + ], + "x-ms-correlation-request-id": [ + "d4cd7c65-2c37-487b-9c6f-d9507a74e1ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185309Z:d4cd7c65-2c37-487b-9c6f-d9507a74e1ad" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "32d78a19-d7cd-45da-988d-93013d924f49" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14229" + ], + "x-ms-correlation-request-id": [ + "8fae9668-46d3-400d-b701-d488962c8840" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185310Z:8fae9668-46d3-400d-b701-d488962c8840" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "469b570f-1811-46a4-8e31-41b7f812f8ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14228" + ], + "x-ms-correlation-request-id": [ + "82dfb0d8-4d04-4940-95bd-d216b584d0b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185310Z:82dfb0d8-4d04-4940-95bd-d216b584d0b1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "83f05458-3453-4f9d-b559-c3bdd4127994" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14227" + ], + "x-ms-correlation-request-id": [ + "3b8c5063-8b41-4b42-8f70-82d8cbd837bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185310Z:3b8c5063-8b41-4b42-8f70-82d8cbd837bc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "356045ca-1876-4aaa-8da3-1bf8c23083b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14226" + ], + "x-ms-correlation-request-id": [ + "3c8ae869-b92b-47f9-8aa2-7088f2f76d90" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185310Z:3c8ae869-b92b-47f9-8aa2-7088f2f76d90" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9f60d0c6-c39c-44c2-84d7-f3a7dc7baac7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14225" + ], + "x-ms-correlation-request-id": [ + "3d66e581-1c95-4b14-89eb-c23f8b1fea1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185311Z:3d66e581-1c95-4b14-89eb-c23f8b1fea1c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "105da31f-ec98-401e-b9f8-622287321ebc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14224" + ], + "x-ms-correlation-request-id": [ + "03919121-eb31-4439-a32b-e1123cddaf53" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185311Z:03919121-eb31-4439-a32b-e1123cddaf53" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "882a3866-2f6c-4e77-81df-27dcdc7689c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14223" + ], + "x-ms-correlation-request-id": [ + "bbdee15d-cf18-475b-aed9-557a1a2ad30e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185311Z:bbdee15d-cf18-475b-aed9-557a1a2ad30e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7efaf9f4-0a04-4689-80f1-7192c82aa7eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14222" + ], + "x-ms-correlation-request-id": [ + "15ec068e-493f-4bb9-abe3-3890106f6059" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185311Z:15ec068e-493f-4bb9-abe3-3890106f6059" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "28f8ddac-3d18-45d4-b2f6-b30e42b0399b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14221" + ], + "x-ms-correlation-request-id": [ + "3cd19847-2abf-4c7b-9a4c-b5d30ec2692a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185311Z:3cd19847-2abf-4c7b-9a4c-b5d30ec2692a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3ed0ed02-8a10-45c1-8dc3-345c4ffac8f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14220" + ], + "x-ms-correlation-request-id": [ + "76cea60b-9eff-4a3c-86c1-a53beeba9af7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185312Z:76cea60b-9eff-4a3c-86c1-a53beeba9af7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c54e5d6d-8057-4235-8000-759ef345f189" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14219" + ], + "x-ms-correlation-request-id": [ + "7801947c-a871-4ea0-8b07-663e12fff309" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185312Z:7801947c-a871-4ea0-8b07-663e12fff309" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "08c74251-aa80-4d3a-b0e7-9acc605dd0fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14218" + ], + "x-ms-correlation-request-id": [ + "2edf5a1f-9bc1-4732-8d9b-1eee3e903856" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185312Z:2edf5a1f-9bc1-4732-8d9b-1eee3e903856" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2e585b40-5d97-4df4-aa2a-a95d4129c83f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14217" + ], + "x-ms-correlation-request-id": [ + "ab146562-a9b6-4327-92bb-e29c8a27d7b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185312Z:ab146562-a9b6-4327-92bb-e29c8a27d7b3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2946096e-9fe3-4bcb-a667-dce2c47e72cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14216" + ], + "x-ms-correlation-request-id": [ + "0c167eaa-d7b1-4f6c-be19-6b5bcce1e349" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185313Z:0c167eaa-d7b1-4f6c-be19-6b5bcce1e349" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d183258e-96fc-4d04-81a6-324b63811859" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14215" + ], + "x-ms-correlation-request-id": [ + "363316d8-115b-4d2e-82d3-38f1861d7988" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185313Z:363316d8-115b-4d2e-82d3-38f1861d7988" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c87bea30-1c57-4216-81c0-7f51cb16533a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14214" + ], + "x-ms-correlation-request-id": [ + "94153e9b-5fbb-4c56-98da-3dd325a4ce0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185313Z:94153e9b-5fbb-4c56-98da-3dd325a4ce0d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3a30a3ec-c1c3-4cf3-8960-6a7270b7a5f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14213" + ], + "x-ms-correlation-request-id": [ + "5bdf642f-b0ad-4dce-8333-522cec374d99" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185313Z:5bdf642f-b0ad-4dce-8333-522cec374d99" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2046cc24-5c6a-490d-8ee9-9f5b686e86be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14212" + ], + "x-ms-correlation-request-id": [ + "049d5b3a-bca5-45e9-8db6-301b5f1eada9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185313Z:049d5b3a-bca5-45e9-8db6-301b5f1eada9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "77b4e8eb-44f5-422f-84ca-9da7c7a4882d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14211" + ], + "x-ms-correlation-request-id": [ + "d045bfdc-b8dc-4630-a6ed-569402d0a079" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185314Z:d045bfdc-b8dc-4630-a6ed-569402d0a079" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8863e90d-e1d7-4dd1-aeb1-27fc8f20905b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14210" + ], + "x-ms-correlation-request-id": [ + "a8712545-6a79-4505-817a-7222b3bf571d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185314Z:a8712545-6a79-4505-817a-7222b3bf571d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e4ec61bb-34ad-4f8d-bad6-498b62a937ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14209" + ], + "x-ms-correlation-request-id": [ + "614bf134-c471-4215-a971-40f5865cec00" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185314Z:614bf134-c471-4215-a971-40f5865cec00" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f74f2490-8f2d-48ea-834e-df0fefd302d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14208" + ], + "x-ms-correlation-request-id": [ + "7907e78a-afe3-4e5e-b6ed-c4eaaed1dc18" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185314Z:7907e78a-afe3-4e5e-b6ed-c4eaaed1dc18" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74b8b6fa-9b77-4ebe-94fa-2891c9dd67b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14207" + ], + "x-ms-correlation-request-id": [ + "7dc1e918-fd7e-461c-a943-a510781ca67f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185315Z:7dc1e918-fd7e-461c-a943-a510781ca67f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e978b30-9f44-41d1-869e-4a26ecc2e686" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14206" + ], + "x-ms-correlation-request-id": [ + "1e8c213f-7f0d-43aa-8079-74805ea839dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185315Z:1e8c213f-7f0d-43aa-8079-74805ea839dd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c49c889-408c-45c3-9659-8b2bbeae8943" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14205" + ], + "x-ms-correlation-request-id": [ + "04b19d5b-b9fa-4fec-9c7a-bf9ef9d59937" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185315Z:04b19d5b-b9fa-4fec-9c7a-bf9ef9d59937" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "df4412e6-bfd4-4435-af2d-4f3f5bda10f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14204" + ], + "x-ms-correlation-request-id": [ + "0a3c2862-e2ba-450f-a6c9-f5a2f68004ef" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185315Z:0a3c2862-e2ba-450f-a6c9-f5a2f68004ef" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1c1992b0-d6a5-40d4-b84b-b77f707004f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14203" + ], + "x-ms-correlation-request-id": [ + "89746a1c-3026-4072-86df-261059ceacbe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185315Z:89746a1c-3026-4072-86df-261059ceacbe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b3657ddf-2f86-4b8c-b972-5725686d3aaf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14202" + ], + "x-ms-correlation-request-id": [ + "ac8f2209-ba69-4867-aa16-98efc223ddc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185316Z:ac8f2209-ba69-4867-aa16-98efc223ddc7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf4c50b6-5a74-4495-b4fa-73046c0c812b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14201" + ], + "x-ms-correlation-request-id": [ + "01b4d58d-8db1-445f-8911-10322866656f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185316Z:01b4d58d-8db1-445f-8911-10322866656f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8a90af5a-9e7c-4654-97c5-790d5afbc5a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14200" + ], + "x-ms-correlation-request-id": [ + "de327561-49e7-44f3-9ee3-8086567c4bdb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185316Z:de327561-49e7-44f3-9ee3-8086567c4bdb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b4705f97-6bea-4f1c-af36-44813242f20d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14199" + ], + "x-ms-correlation-request-id": [ + "bd614307-21c5-480d-93a9-d10f09f1d77b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185316Z:bd614307-21c5-480d-93a9-d10f09f1d77b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3f7d8177-a39e-4962-818e-4e3d5842a63f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14198" + ], + "x-ms-correlation-request-id": [ + "20bc15df-315c-432a-9b02-2c61f71fa355" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185317Z:20bc15df-315c-432a-9b02-2c61f71fa355" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fb41b81e-64b0-401a-a122-9b0d0399dda2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14197" + ], + "x-ms-correlation-request-id": [ + "dc14eee0-1910-4eb1-acd4-184263582fcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185317Z:dc14eee0-1910-4eb1-acd4-184263582fcd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "96a097f8-8027-4ab6-85c9-763f878cac4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14196" + ], + "x-ms-correlation-request-id": [ + "9f05acb2-c700-4d3b-8c2f-b0c2a8f323b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185317Z:9f05acb2-c700-4d3b-8c2f-b0c2a8f323b3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3c99ac96-504b-461c-af40-70a18ede772b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14195" + ], + "x-ms-correlation-request-id": [ + "72f0c30b-6ad7-4edd-a14a-15f5b49b1da5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185317Z:72f0c30b-6ad7-4edd-a14a-15f5b49b1da5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7afdba68-52d8-46be-b556-104ee80b95dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14194" + ], + "x-ms-correlation-request-id": [ + "758d8bdf-2897-4c45-bc61-1fb40a97717a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185317Z:758d8bdf-2897-4c45-bc61-1fb40a97717a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "924d67fb-19c2-4b70-9aad-fbbccf87ded1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14193" + ], + "x-ms-correlation-request-id": [ + "fbef4f17-dd92-4f82-9c06-e5c4df10d97f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185318Z:fbef4f17-dd92-4f82-9c06-e5c4df10d97f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "206e0a4f-9389-43c9-8a69-b4e896d8f376" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14192" + ], + "x-ms-correlation-request-id": [ + "ce3143b6-364e-4010-9c8f-4a454ce367f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185318Z:ce3143b6-364e-4010-9c8f-4a454ce367f8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b631b273-aa49-41cb-8026-168249644b2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14191" + ], + "x-ms-correlation-request-id": [ + "414852d5-199e-40b1-acb6-880103cd4a7b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185318Z:414852d5-199e-40b1-acb6-880103cd4a7b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2753ad7d-13de-43ee-ab27-597bd16ad529" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14190" + ], + "x-ms-correlation-request-id": [ + "f0644828-ca20-471d-98c8-e7b519d988a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185318Z:f0644828-ca20-471d-98c8-e7b519d988a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a70b53a4-2a2b-4430-9f6a-2f63ca607347" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14189" + ], + "x-ms-correlation-request-id": [ + "d397d51c-3053-4af6-9c2b-7bfc61cd2c68" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185319Z:d397d51c-3053-4af6-9c2b-7bfc61cd2c68" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6d40dcde-4152-486e-a642-7057624ced6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14188" + ], + "x-ms-correlation-request-id": [ + "b7d89663-9d60-4cfa-b020-3d6d3d79311f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185319Z:b7d89663-9d60-4cfa-b020-3d6d3d79311f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "12eaed78-d9f5-4fc0-a7df-6e45cb6e1fe0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14187" + ], + "x-ms-correlation-request-id": [ + "ca153587-273e-4078-b77f-23b6f2739f86" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185319Z:ca153587-273e-4078-b77f-23b6f2739f86" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "82c0b401-b093-4b68-a83c-5f628a8753cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14186" + ], + "x-ms-correlation-request-id": [ + "b395415f-ec5d-458c-bb5c-4319ee3723ec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185319Z:b395415f-ec5d-458c-bb5c-4319ee3723ec" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f081b6f4-fe3f-4075-b67d-a0cc294b7aa4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14185" + ], + "x-ms-correlation-request-id": [ + "22d742de-ffb2-4490-ae82-ef3c388e51e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185319Z:22d742de-ffb2-4490-ae82-ef3c388e51e4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "58378f9d-c658-44d0-af34-38a6119e155e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14184" + ], + "x-ms-correlation-request-id": [ + "fafc9450-b58c-44cd-8c4c-93f59f6ee166" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185320Z:fafc9450-b58c-44cd-8c4c-93f59f6ee166" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "39a28cff-d625-4879-9fae-8c845cfa4980" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14183" + ], + "x-ms-correlation-request-id": [ + "8526ac3d-a3f3-4f8d-a3b7-2a2a95e3e3c2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185320Z:8526ac3d-a3f3-4f8d-a3b7-2a2a95e3e3c2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d839f4a5-2284-4e19-93b4-bf43f90108c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14182" + ], + "x-ms-correlation-request-id": [ + "47f569b8-cdd1-4b6b-93a9-fe8446c83828" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185320Z:47f569b8-cdd1-4b6b-93a9-fe8446c83828" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3882fa0e-9fba-4dd9-8444-d3a6e2290d38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14181" + ], + "x-ms-correlation-request-id": [ + "71a6e672-3995-4a07-905f-a5b7901bd701" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185320Z:71a6e672-3995-4a07-905f-a5b7901bd701" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e4e29287-0757-4605-8f40-24c031e8b9b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14180" + ], + "x-ms-correlation-request-id": [ + "c6ecfb29-2147-4a5e-b801-462ed15ec081" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185321Z:c6ecfb29-2147-4a5e-b801-462ed15ec081" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74dca6d1-884d-4636-b4eb-10134d4b0aa6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14179" + ], + "x-ms-correlation-request-id": [ + "95a1e09b-3975-40b6-a770-06f5dc7927a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185321Z:95a1e09b-3975-40b6-a770-06f5dc7927a1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f63eb76e-2909-4252-bf9e-020903ccc709" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14178" + ], + "x-ms-correlation-request-id": [ + "f1960c46-e23d-40c6-a92f-56a3a8908207" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185321Z:f1960c46-e23d-40c6-a92f-56a3a8908207" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04724690-faa3-4f2a-9c10-9f143da03e71" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14177" + ], + "x-ms-correlation-request-id": [ + "0f4e858a-c758-46ed-9d74-6997a6c72e9e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185321Z:0f4e858a-c758-46ed-9d74-6997a6c72e9e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "61dca2d8-64bc-4a6e-a097-1f3275fe81ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14176" + ], + "x-ms-correlation-request-id": [ + "2695628c-1355-4713-971d-0e9d9ad12067" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185322Z:2695628c-1355-4713-971d-0e9d9ad12067" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "abf7a979-116d-423e-ada9-458084ecfa3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14175" + ], + "x-ms-correlation-request-id": [ + "0f100d01-f68f-403d-8551-0ca4f4d63df4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185322Z:0f100d01-f68f-403d-8551-0ca4f4d63df4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "587e22d1-b0c8-4f26-9be9-a5e42b953a2a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14174" + ], + "x-ms-correlation-request-id": [ + "75f26d6e-9822-41f0-8140-3bf8ed01e644" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185322Z:75f26d6e-9822-41f0-8140-3bf8ed01e644" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a4ecf4b8-9af8-4b7d-bab6-6cbbf9e695d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14173" + ], + "x-ms-correlation-request-id": [ + "d2ac6f9a-3af2-4a74-8310-3a58109b09fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185322Z:d2ac6f9a-3af2-4a74-8310-3a58109b09fb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "750a2f34-ff17-4020-8bd1-b808180a0a92" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14172" + ], + "x-ms-correlation-request-id": [ + "a0e10e4a-280f-4673-9363-6924cc9b22aa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185322Z:a0e10e4a-280f-4673-9363-6924cc9b22aa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "848e82da-a1d2-45f2-aed7-2b96aa76702d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14171" + ], + "x-ms-correlation-request-id": [ + "4e9c1df0-7e74-487a-8f00-fe592c22ff29" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185323Z:4e9c1df0-7e74-487a-8f00-fe592c22ff29" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e4015d50-1295-452a-a4ec-2fb612394837" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14170" + ], + "x-ms-correlation-request-id": [ + "e06d5bfb-e0ad-48ef-b511-0f47bd391ab8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185323Z:e06d5bfb-e0ad-48ef-b511-0f47bd391ab8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c58cb7b-9f90-4f8f-9a50-3d5250b3c85e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14169" + ], + "x-ms-correlation-request-id": [ + "e7e07264-3557-4ae9-8c0f-194494c0b294" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185323Z:e7e07264-3557-4ae9-8c0f-194494c0b294" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "955dd757-0c83-4eea-9aff-868a29a8b74a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14168" + ], + "x-ms-correlation-request-id": [ + "bb37119a-6471-4434-b3c3-f72f304420b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185323Z:bb37119a-6471-4434-b3c3-f72f304420b9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6c20139a-8317-4f28-8550-a24ec1185d5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14167" + ], + "x-ms-correlation-request-id": [ + "55f728d8-8b1d-4647-9624-2dd74e3158d1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185324Z:55f728d8-8b1d-4647-9624-2dd74e3158d1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48ee0404-7876-42d7-825f-458101433ef9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14166" + ], + "x-ms-correlation-request-id": [ + "c4713ab4-7afc-47de-bb6b-1f63d0fb6764" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185324Z:c4713ab4-7afc-47de-bb6b-1f63d0fb6764" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b9bd6eeb-fb57-4f01-84b2-290627fa7e78" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14165" + ], + "x-ms-correlation-request-id": [ + "9bc85e27-fa38-40b3-9e57-b2be8a3e90f9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185324Z:9bc85e27-fa38-40b3-9e57-b2be8a3e90f9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5fce1a95-e1d5-4e29-bfe6-1e211974753c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14164" + ], + "x-ms-correlation-request-id": [ + "697a92ed-5022-4087-bf87-d0a5d32465ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185324Z:697a92ed-5022-4087-bf87-d0a5d32465ff" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d15b54fd-9df2-40cc-876a-f5e56a67c356" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14163" + ], + "x-ms-correlation-request-id": [ + "29554901-4d15-4fa9-b144-b70d646c2663" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185324Z:29554901-4d15-4fa9-b144-b70d646c2663" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d4a24fd7-ab21-4404-b074-789f2f067381" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14162" + ], + "x-ms-correlation-request-id": [ + "fcb393dd-e5ac-4928-82a5-3ad83011799a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185325Z:fcb393dd-e5ac-4928-82a5-3ad83011799a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "350c3013-37d7-4e1b-9af6-6f64390a8154" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14161" + ], + "x-ms-correlation-request-id": [ + "aafc5bc7-94a4-42ad-80c0-2e525d8e6066" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185325Z:aafc5bc7-94a4-42ad-80c0-2e525d8e6066" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "de9dc922-8df8-475f-bb6a-9822660122ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14160" + ], + "x-ms-correlation-request-id": [ + "fb00eef8-c11f-49af-8cf5-af5bdcd08491" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185325Z:fb00eef8-c11f-49af-8cf5-af5bdcd08491" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d886edc6-16e2-42b8-8021-a06ec1133808" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14159" + ], + "x-ms-correlation-request-id": [ + "815d7420-a60a-45ea-bb29-c9d2a695219b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185325Z:815d7420-a60a-45ea-bb29-c9d2a695219b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b87696cf-de89-4161-80ab-d03770aca84a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14158" + ], + "x-ms-correlation-request-id": [ + "2cfd69a2-51b2-44a9-a73d-cdc90559c6aa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185326Z:2cfd69a2-51b2-44a9-a73d-cdc90559c6aa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ba47cb0b-9a27-414d-b3c9-97e0640a24f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14157" + ], + "x-ms-correlation-request-id": [ + "658ebdea-e39b-4a0e-bfbc-6964be26d65b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185326Z:658ebdea-e39b-4a0e-bfbc-6964be26d65b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "533c6340-0743-4fd9-b4a4-be2ef5516cbe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14156" + ], + "x-ms-correlation-request-id": [ + "47a61e9c-78ba-494d-988b-395c644f6255" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185326Z:47a61e9c-78ba-494d-988b-395c644f6255" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5a6328be-817b-4f52-8dc0-a79a80a0b08b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14155" + ], + "x-ms-correlation-request-id": [ + "1698ca66-41e1-4656-8ec6-b3ee0e28afac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185326Z:1698ca66-41e1-4656-8ec6-b3ee0e28afac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "14bd0a4e-417f-45da-a6b4-f8199b6d1306" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14154" + ], + "x-ms-correlation-request-id": [ + "2b3e487b-9a9e-451d-8e9a-0cf75cf0b71a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185326Z:2b3e487b-9a9e-451d-8e9a-0cf75cf0b71a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cdfaa903-d7cf-4ad1-b04c-7c083523659a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14153" + ], + "x-ms-correlation-request-id": [ + "2026cec4-b16a-4a35-a29d-99141284c219" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185327Z:2026cec4-b16a-4a35-a29d-99141284c219" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e0b452e8-5c45-44b3-9836-b934491d6007" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14152" + ], + "x-ms-correlation-request-id": [ + "ca37ab21-6568-403e-bbf3-0dbafa44794e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185327Z:ca37ab21-6568-403e-bbf3-0dbafa44794e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "517c3d75-ad96-4951-a039-c808e59b1ad7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14151" + ], + "x-ms-correlation-request-id": [ + "6055e3b6-3820-472c-afb6-f363b10e2dd4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185327Z:6055e3b6-3820-472c-afb6-f363b10e2dd4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d82916e-a35c-4485-b413-a07efb91e7e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14150" + ], + "x-ms-correlation-request-id": [ + "044007c9-ba3c-4f10-ac0a-d8ccb714fd2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185327Z:044007c9-ba3c-4f10-ac0a-d8ccb714fd2b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8f507a3e-9e06-4911-8139-4c43689380ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14149" + ], + "x-ms-correlation-request-id": [ + "8561df04-d204-4339-a8de-a65291af0a13" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185328Z:8561df04-d204-4339-a8de-a65291af0a13" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "df18a3c8-0dad-4ebc-8195-466e86b722ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14148" + ], + "x-ms-correlation-request-id": [ + "68147843-3f49-454f-b259-9263d5fb18cd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185328Z:68147843-3f49-454f-b259-9263d5fb18cd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a3348a86-ffa3-4009-8623-1443e0e6d5b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14147" + ], + "x-ms-correlation-request-id": [ + "e099969f-19d6-4103-8a34-886ce48f9ff3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185328Z:e099969f-19d6-4103-8a34-886ce48f9ff3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5eadaa35-aedb-47f4-be30-48c8cb7813a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14146" + ], + "x-ms-correlation-request-id": [ + "a7167774-07be-4d56-aa58-86e4a44d20f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185328Z:a7167774-07be-4d56-aa58-86e4a44d20f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c762964-40cc-4ff2-beda-fc885d73ca79" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14145" + ], + "x-ms-correlation-request-id": [ + "a59e5995-5a2d-4cf5-a503-94e6668f5330" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185329Z:a59e5995-5a2d-4cf5-a503-94e6668f5330" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "89699faa-7ebd-453f-816d-e37750df89e5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14144" + ], + "x-ms-correlation-request-id": [ + "0a661fb0-2bf2-4c82-b167-90b6cb6a3a28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185329Z:0a661fb0-2bf2-4c82-b167-90b6cb6a3a28" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7ea22e36-5561-4b90-8d4d-8707ebf612b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14143" + ], + "x-ms-correlation-request-id": [ + "68cced5b-445f-4ca7-8219-fb0cc21667e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185329Z:68cced5b-445f-4ca7-8219-fb0cc21667e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "77a105fc-7726-4ec6-bef6-183c0f7b69cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14142" + ], + "x-ms-correlation-request-id": [ + "8550852c-0e2f-47bb-a491-f82fdc1adee8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185329Z:8550852c-0e2f-47bb-a491-f82fdc1adee8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "130f3e24-d2cc-44ee-b53b-82d195d190a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14141" + ], + "x-ms-correlation-request-id": [ + "f300fe57-a9db-4ab4-bde4-1149fc38fce7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185329Z:f300fe57-a9db-4ab4-bde4-1149fc38fce7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b040b2b9-e931-4c7d-b42b-83b596d1fd87" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14140" + ], + "x-ms-correlation-request-id": [ + "722c730a-cc68-4bb4-a58d-3df6135a2fc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185330Z:722c730a-cc68-4bb4-a58d-3df6135a2fc7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4a6be686-8cd3-42b0-9509-870050c76424" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14139" + ], + "x-ms-correlation-request-id": [ + "a8d28957-3236-483e-858d-e936fc489be9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185330Z:a8d28957-3236-483e-858d-e936fc489be9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7001485d-9f16-453d-8402-136e8030a8bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14138" + ], + "x-ms-correlation-request-id": [ + "b34eac05-29a0-409b-8d84-a35887f3baf2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185330Z:b34eac05-29a0-409b-8d84-a35887f3baf2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a11dc644-2646-41da-9f5d-29031ef166d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14137" + ], + "x-ms-correlation-request-id": [ + "9a7a72e3-3507-45e6-ad50-bd96034d824d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185330Z:9a7a72e3-3507-45e6-ad50-bd96034d824d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0ba3df56-2f44-4254-9070-4e6636c53a05" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14136" + ], + "x-ms-correlation-request-id": [ + "8219bbcb-923b-4aba-bf81-aa4dfbf26a22" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185330Z:8219bbcb-923b-4aba-bf81-aa4dfbf26a22" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "77c61589-edf7-4606-9a44-c9dec9447269" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14135" + ], + "x-ms-correlation-request-id": [ + "7c1f407d-a71c-4a7f-b69d-b92d37346704" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185331Z:7c1f407d-a71c-4a7f-b69d-b92d37346704" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4de3a3f2-0aac-4782-a144-210536a2ddbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14134" + ], + "x-ms-correlation-request-id": [ + "b11acb5a-c94b-4f2e-be6d-4feef9d15e5f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185331Z:b11acb5a-c94b-4f2e-be6d-4feef9d15e5f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "360fef0d-53c7-4057-b358-a99b1f610e7e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14133" + ], + "x-ms-correlation-request-id": [ + "6bd4b904-7d2d-4bf9-8300-afa7b7b6f6a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185331Z:6bd4b904-7d2d-4bf9-8300-afa7b7b6f6a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a004c3e-7c3f-4d34-9870-6e327a112017" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14132" + ], + "x-ms-correlation-request-id": [ + "5025df66-5c4b-493e-b250-3e85bf72fd15" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185331Z:5025df66-5c4b-493e-b250-3e85bf72fd15" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce5c32f8-350a-462b-a9f8-763df3335de9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14131" + ], + "x-ms-correlation-request-id": [ + "6f27e17d-6436-4f3c-854c-f3ee222ff8bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185332Z:6f27e17d-6436-4f3c-854c-f3ee222ff8bd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44ecf4f9-a3a8-4612-959c-1766f27e667f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14130" + ], + "x-ms-correlation-request-id": [ + "9649967e-a4f9-453e-9c0a-344c2ab1697b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185332Z:9649967e-a4f9-453e-9c0a-344c2ab1697b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3b09741f-474a-48bc-90c1-e5101c6312f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14129" + ], + "x-ms-correlation-request-id": [ + "1c3338a8-2540-43e6-aa7e-e6f7904a7d0b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185332Z:1c3338a8-2540-43e6-aa7e-e6f7904a7d0b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d3bc9587-7c77-490d-82b8-bd9d88f84b13" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14128" + ], + "x-ms-correlation-request-id": [ + "f3e999cd-438e-4b5f-8074-678c34e779ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185332Z:f3e999cd-438e-4b5f-8074-678c34e779ba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "079d4831-2da0-4022-a99c-f4000f8cf2c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14127" + ], + "x-ms-correlation-request-id": [ + "aba168bb-8152-40fc-bee7-eb38c6554aee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185332Z:aba168bb-8152-40fc-bee7-eb38c6554aee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "505e1f7a-37d0-487d-8913-8dbf0a192d77" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14126" + ], + "x-ms-correlation-request-id": [ + "0acec96d-db45-4c67-b6e3-c5fd8c9797ea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185333Z:0acec96d-db45-4c67-b6e3-c5fd8c9797ea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "de7fa5e0-6d92-41d8-99f2-539af0aacb16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14125" + ], + "x-ms-correlation-request-id": [ + "6c6fcd3b-fc76-407f-920a-aae5340e09e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185333Z:6c6fcd3b-fc76-407f-920a-aae5340e09e1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dc498871-90ff-4795-80a1-9c72a44f038f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14124" + ], + "x-ms-correlation-request-id": [ + "2eaf52fe-278a-48fa-9a6b-ba3e7ffb36ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185333Z:2eaf52fe-278a-48fa-9a6b-ba3e7ffb36ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b46dfe69-84cb-4bff-9873-846f0672e195" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14123" + ], + "x-ms-correlation-request-id": [ + "adc43b22-077a-4af6-8702-1339b73d413a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185333Z:adc43b22-077a-4af6-8702-1339b73d413a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ffc66c9e-e182-4eaf-be6a-3bd39713a584" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14122" + ], + "x-ms-correlation-request-id": [ + "37c7fc85-2a6a-4179-bf2b-d832854cb5b2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185334Z:37c7fc85-2a6a-4179-bf2b-d832854cb5b2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "485527e0-e615-4bf0-84b4-44e4aa7753f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14121" + ], + "x-ms-correlation-request-id": [ + "7cd51ec8-63cb-4b02-8435-32ad5be0ecca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185334Z:7cd51ec8-63cb-4b02-8435-32ad5be0ecca" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c8690564-3267-4242-87b8-058a85fc4f1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14120" + ], + "x-ms-correlation-request-id": [ + "46360d62-d149-4504-b003-6c0ea9aacc53" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185334Z:46360d62-d149-4504-b003-6c0ea9aacc53" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ebff17ab-effa-4171-a74d-7755e8180df6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14119" + ], + "x-ms-correlation-request-id": [ + "3f0cda81-cabb-4184-b457-4451caee59f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185334Z:3f0cda81-cabb-4184-b457-4451caee59f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ef3a59e3-8817-40fd-8ad2-b359a704c40b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14118" + ], + "x-ms-correlation-request-id": [ + "afbf8531-37bb-4142-9305-6b7e0588f5fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185334Z:afbf8531-37bb-4142-9305-6b7e0588f5fa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "15247087-226e-4b30-92c4-5b4bd200418e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14117" + ], + "x-ms-correlation-request-id": [ + "a600c7f2-a008-48de-bdb6-abc3b46cf533" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185335Z:a600c7f2-a008-48de-bdb6-abc3b46cf533" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4d358fba-cd06-4ebd-a6c4-d7ace54cf580" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14116" + ], + "x-ms-correlation-request-id": [ + "301eeb78-ebaf-4f4f-ace4-b9a487c0fb42" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185335Z:301eeb78-ebaf-4f4f-ace4-b9a487c0fb42" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2d3e155b-d4c6-454b-8807-7bfe4670330d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14115" + ], + "x-ms-correlation-request-id": [ + "17dc75f0-bd24-41bb-9768-9dc3febb108f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185335Z:17dc75f0-bd24-41bb-9768-9dc3febb108f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f088fa30-ea7a-484c-ae03-29b3b29ccc2b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14114" + ], + "x-ms-correlation-request-id": [ + "05b06ee9-9fa8-4e23-ad21-4d424fa664de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185335Z:05b06ee9-9fa8-4e23-ad21-4d424fa664de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "531ecc18-c668-423d-bee6-2d45c4e59b2a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14113" + ], + "x-ms-correlation-request-id": [ + "eb564b57-9c6e-4919-bc2e-48e03084ec70" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185336Z:eb564b57-9c6e-4919-bc2e-48e03084ec70" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ef469122-bacc-42ea-a9e8-d596a9cd7bdd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14112" + ], + "x-ms-correlation-request-id": [ + "06cc8c6e-cd79-4907-926d-5163a90e99ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185336Z:06cc8c6e-cd79-4907-926d-5163a90e99ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "58edbfdd-bd5b-4d81-acc3-7bb9865ac473" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14111" + ], + "x-ms-correlation-request-id": [ + "39fcc638-3664-43dd-a971-a308f12f3040" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185336Z:39fcc638-3664-43dd-a971-a308f12f3040" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c218df2f-0fe1-4878-b660-340c7346cd9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14110" + ], + "x-ms-correlation-request-id": [ + "95b2658f-fabb-41b6-92ec-3fba4ef0771e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185336Z:95b2658f-fabb-41b6-92ec-3fba4ef0771e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ac4c2ed2-7712-418e-84aa-e87093a63717" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14109" + ], + "x-ms-correlation-request-id": [ + "d9ed526a-5c99-41fe-952a-bd9784c25793" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185336Z:d9ed526a-5c99-41fe-952a-bd9784c25793" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5640922c-425f-4ff2-a45d-19be3e21ffb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14108" + ], + "x-ms-correlation-request-id": [ + "d4e37112-eae2-4bef-9747-5d5b419e1fd3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185337Z:d4e37112-eae2-4bef-9747-5d5b419e1fd3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "55a2489f-1c81-4d36-9e8e-c92478a7d616" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14107" + ], + "x-ms-correlation-request-id": [ + "40ccb04d-659b-4f7c-a30c-3d68a2365319" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185337Z:40ccb04d-659b-4f7c-a30c-3d68a2365319" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce31faef-658f-4d62-9e24-625915e72598" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14106" + ], + "x-ms-correlation-request-id": [ + "e7c2abfe-2e49-46f9-996b-a6a94e67de74" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185337Z:e7c2abfe-2e49-46f9-996b-a6a94e67de74" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c6fea0ce-15ba-41c0-a54e-9cc98c33460e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14105" + ], + "x-ms-correlation-request-id": [ + "56d016d2-485f-449f-b07a-42e66d8e19f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185337Z:56d016d2-485f-449f-b07a-42e66d8e19f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6f64d077-093e-447c-a8ec-8d5cb31b1f36" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14103" + ], + "x-ms-correlation-request-id": [ + "3d27286d-d9df-4c64-8b10-f3b30fa83e8f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185338Z:3d27286d-d9df-4c64-8b10-f3b30fa83e8f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "027e9651-d5e2-4092-a54e-dc4cdfb6abd5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14102" + ], + "x-ms-correlation-request-id": [ + "18e3c49b-4218-4d08-b231-c633d409a422" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185338Z:18e3c49b-4218-4d08-b231-c633d409a422" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8db2bb91-f93d-4e2c-8fc1-cfbd049f832b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14101" + ], + "x-ms-correlation-request-id": [ + "3d15c81f-112b-41a5-b7b4-1cf66c668949" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185338Z:3d15c81f-112b-41a5-b7b4-1cf66c668949" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eef4b28b-6aca-4bd0-9b44-91ddefb96337" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14100" + ], + "x-ms-correlation-request-id": [ + "39d39dda-49a4-423f-b683-0da132dab37b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185338Z:39d39dda-49a4-423f-b683-0da132dab37b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4665dbca-1894-4c4f-812a-5ab457078c2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14099" + ], + "x-ms-correlation-request-id": [ + "b0632216-fd5b-4f6c-b1df-cf13851b76bf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185338Z:b0632216-fd5b-4f6c-b1df-cf13851b76bf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "86f239b1-abd9-4cf6-bb32-26d7559842ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14098" + ], + "x-ms-correlation-request-id": [ + "9771495d-d5e4-4e6c-8d8a-28006e3e818d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185339Z:9771495d-d5e4-4e6c-8d8a-28006e3e818d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5b204376-0cc4-42c4-8bb6-8f349956dea8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14097" + ], + "x-ms-correlation-request-id": [ + "106299ae-e544-4cb0-9a52-100c72498943" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185339Z:106299ae-e544-4cb0-9a52-100c72498943" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74d7aa52-b229-4aa6-a571-d34afba36c30" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14096" + ], + "x-ms-correlation-request-id": [ + "7dd5188a-951c-424a-aa39-8db647a3a472" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185339Z:7dd5188a-951c-424a-aa39-8db647a3a472" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7c1bfb58-137b-49aa-abf6-bd718479c0a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14095" + ], + "x-ms-correlation-request-id": [ + "c3928917-f7de-4895-adb2-2a3b158f6be7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185339Z:c3928917-f7de-4895-adb2-2a3b158f6be7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "42805bce-40bd-4834-8927-cfca69c31a70" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14094" + ], + "x-ms-correlation-request-id": [ + "152e0a68-9c65-49e7-b5f2-b60d652fa210" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185340Z:152e0a68-9c65-49e7-b5f2-b60d652fa210" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "256b8070-e375-434a-ab26-8aa45c692bc1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14093" + ], + "x-ms-correlation-request-id": [ + "b876e41f-75f7-492e-a411-e39b4bcbda85" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185340Z:b876e41f-75f7-492e-a411-e39b4bcbda85" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6aee5b6a-1975-47e0-882e-e449fa5309c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14092" + ], + "x-ms-correlation-request-id": [ + "a360dac6-ff4c-4973-929d-0c2a4ca43b36" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185340Z:a360dac6-ff4c-4973-929d-0c2a4ca43b36" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5e2faa05-a411-4323-8d3b-5c59d96e024f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14091" + ], + "x-ms-correlation-request-id": [ + "cd3a3afd-aff5-4c94-bc46-c48fc54edde3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185340Z:cd3a3afd-aff5-4c94-bc46-c48fc54edde3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "916bee9a-5adb-4533-8d33-299c33c4313c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14090" + ], + "x-ms-correlation-request-id": [ + "390d4f3c-1d7a-44bd-a363-3324de478aee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185340Z:390d4f3c-1d7a-44bd-a363-3324de478aee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0ac51e85-9893-4b29-854c-06a2915660c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14089" + ], + "x-ms-correlation-request-id": [ + "19970c47-f516-4475-a4aa-ddd6937421a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185341Z:19970c47-f516-4475-a4aa-ddd6937421a2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cafa112f-7ca9-4fa7-92b2-04671c4e2843" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14088" + ], + "x-ms-correlation-request-id": [ + "98a99338-3583-4fb3-ab30-aaf37ecf6b02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185341Z:98a99338-3583-4fb3-ab30-aaf37ecf6b02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "27b85640-bcd0-4d16-bfbe-e385894b4464" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14087" + ], + "x-ms-correlation-request-id": [ + "51778844-b0f9-4819-b560-0273076e69fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185341Z:51778844-b0f9-4819-b560-0273076e69fd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a1a84a39-3f5b-4fe3-b4cb-8e6f9886c989" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14086" + ], + "x-ms-correlation-request-id": [ + "97cf1138-33ac-4fbd-9002-110041a3d838" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185341Z:97cf1138-33ac-4fbd-9002-110041a3d838" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "130657ec-5608-4344-9f60-f8b015c21f68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14085" + ], + "x-ms-correlation-request-id": [ + "07f79bd3-a499-486c-8a29-cf0b68a4c302" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185342Z:07f79bd3-a499-486c-8a29-cf0b68a4c302" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ed6833e-dd3e-4ac5-b505-d5e38f384916" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14084" + ], + "x-ms-correlation-request-id": [ + "dd9f3aaf-2124-4fed-abcd-058594a65fb9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185342Z:dd9f3aaf-2124-4fed-abcd-058594a65fb9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3d6865a8-ad17-4ed3-9ce8-49ca7a2cab2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14083" + ], + "x-ms-correlation-request-id": [ + "3532e520-64fd-4798-9602-b252c3a294de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185342Z:3532e520-64fd-4798-9602-b252c3a294de" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9f6c8666-7649-4358-bd34-d56b25a09d90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14082" + ], + "x-ms-correlation-request-id": [ + "c6553031-501c-448d-874e-1114e8b6b5b7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185342Z:c6553031-501c-448d-874e-1114e8b6b5b7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "652fc9be-1244-4016-a70a-a7856e57818f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14081" + ], + "x-ms-correlation-request-id": [ + "41d407f4-cd2f-4131-888a-d7dc195e39c7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185342Z:41d407f4-cd2f-4131-888a-d7dc195e39c7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a6d810c4-879d-4730-985f-11574eeefeff" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14080" + ], + "x-ms-correlation-request-id": [ + "a93f05bf-9d51-438f-99fe-96b6be89b8bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185343Z:a93f05bf-9d51-438f-99fe-96b6be89b8bb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4a4a6278-f2c1-41f3-a03d-ec4f9a831ab6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14079" + ], + "x-ms-correlation-request-id": [ + "0391ac9f-cd1f-4c10-aa4e-795b100539f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185343Z:0391ac9f-cd1f-4c10-aa4e-795b100539f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9964dbd7-3c91-4911-a18d-559080f78435" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14078" + ], + "x-ms-correlation-request-id": [ + "e6ffcbee-a579-4df5-80cf-8523fbfe6c4e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185343Z:e6ffcbee-a579-4df5-80cf-8523fbfe6c4e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ad40de2d-dc6b-4f36-aecd-af252a309da2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14077" + ], + "x-ms-correlation-request-id": [ + "c6ad3843-cf9a-4ce7-aac0-0e09b6bc6a96" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185343Z:c6ad3843-cf9a-4ce7-aac0-0e09b6bc6a96" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d0da0e03-63e5-440c-9484-1915917c2b4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14076" + ], + "x-ms-correlation-request-id": [ + "055b8fa4-8679-4278-881f-d44cb18796be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185344Z:055b8fa4-8679-4278-881f-d44cb18796be" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "79f55d63-d13c-4a7c-aea5-b56b16c830c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14075" + ], + "x-ms-correlation-request-id": [ + "6f761025-2a7c-4820-b039-044049398e71" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185344Z:6f761025-2a7c-4820-b039-044049398e71" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "07d42fdb-443c-415d-a687-e69da65f52ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14074" + ], + "x-ms-correlation-request-id": [ + "4a606ad2-4628-41b4-bccb-8566fb54e799" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185344Z:4a606ad2-4628-41b4-bccb-8566fb54e799" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4e9c8e6d-a611-4d43-ae1c-159522f3fc3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14073" + ], + "x-ms-correlation-request-id": [ + "fc4d30d9-88f8-4041-aa27-dd5ed1d213c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185344Z:fc4d30d9-88f8-4041-aa27-dd5ed1d213c0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c2d56103-bded-488a-bd53-cc9a1c1e3636" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14072" + ], + "x-ms-correlation-request-id": [ + "bf515056-b474-4db0-8cd4-a5e286a3f50f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185345Z:bf515056-b474-4db0-8cd4-a5e286a3f50f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "282179f0-46f5-46e2-a719-ab40f4efb872" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14071" + ], + "x-ms-correlation-request-id": [ + "4001a0d2-e9c2-4e94-8d05-6b525a530be0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185345Z:4001a0d2-e9c2-4e94-8d05-6b525a530be0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eacd54bf-1045-4f94-a699-64bed2e8eda3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14070" + ], + "x-ms-correlation-request-id": [ + "b1a2bee7-faa8-4a29-ac8f-05693c390cc6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185345Z:b1a2bee7-faa8-4a29-ac8f-05693c390cc6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ccbc1910-4508-4fe1-b9aa-6009c1b751c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14069" + ], + "x-ms-correlation-request-id": [ + "c30bf2e9-9c8b-468f-8d42-ab1768b8f37c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185345Z:c30bf2e9-9c8b-468f-8d42-ab1768b8f37c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "12d2f446-2e8c-4865-bd8d-45ae16b32504" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14068" + ], + "x-ms-correlation-request-id": [ + "1b55c85f-aba4-4aa9-8222-68012dffc920" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185345Z:1b55c85f-aba4-4aa9-8222-68012dffc920" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6b56b21-f6ab-4059-a076-30a152a50bb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14067" + ], + "x-ms-correlation-request-id": [ + "77a84942-c39e-4af3-87ce-deac4100bbb1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185346Z:77a84942-c39e-4af3-87ce-deac4100bbb1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6471ba86-f7a6-4fd8-b368-590283e363c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14066" + ], + "x-ms-correlation-request-id": [ + "0e1c6ded-331c-4489-8782-d22dc82c5e26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185346Z:0e1c6ded-331c-4489-8782-d22dc82c5e26" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4f3e3764-b4d3-46f8-ad8a-a137d849d954" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14065" + ], + "x-ms-correlation-request-id": [ + "e8ea8c55-bcb6-45c2-b80d-714d6aaf3f7e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185346Z:e8ea8c55-bcb6-45c2-b80d-714d6aaf3f7e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5021c651-3e6a-4bd5-9d88-87237badf8be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14064" + ], + "x-ms-correlation-request-id": [ + "df823a60-5fc6-4bd6-935e-0922833c4591" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185346Z:df823a60-5fc6-4bd6-935e-0922833c4591" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2e37b7b5-04df-4ba5-8d48-3586be59eb17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14063" + ], + "x-ms-correlation-request-id": [ + "5f3b39f9-e496-4065-8910-6dcb9e28f14e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185347Z:5f3b39f9-e496-4065-8910-6dcb9e28f14e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "389f1354-17da-4241-b5c0-d15da0f8c33b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14062" + ], + "x-ms-correlation-request-id": [ + "db049b99-bed4-402e-8fa8-19d583a8c161" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185347Z:db049b99-bed4-402e-8fa8-19d583a8c161" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "de7d65ba-df9f-4051-8a13-3544953a8381" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14061" + ], + "x-ms-correlation-request-id": [ + "444a9350-3da0-40cc-af97-5c43ae895182" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185347Z:444a9350-3da0-40cc-af97-5c43ae895182" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "359cf229-f902-4ce2-8beb-169a30806a02" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14060" + ], + "x-ms-correlation-request-id": [ + "b2b69356-5572-4f7e-8dc9-10e39eb9803b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185347Z:b2b69356-5572-4f7e-8dc9-10e39eb9803b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1783e54f-2cc9-46f9-b926-3445a50c3747" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14059" + ], + "x-ms-correlation-request-id": [ + "e4f7490a-cf80-41cb-84e0-f61e7072c431" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185347Z:e4f7490a-cf80-41cb-84e0-f61e7072c431" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8f09ccc2-ed0d-41ec-a2cb-95bd888150b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14058" + ], + "x-ms-correlation-request-id": [ + "3b895c07-e13b-41bf-8ab8-4374d6aae457" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185348Z:3b895c07-e13b-41bf-8ab8-4374d6aae457" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e02dee58-aab9-4f09-bc5e-daded927475a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14057" + ], + "x-ms-correlation-request-id": [ + "dafed827-91f7-474d-a2c2-ec40699f1489" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185348Z:dafed827-91f7-474d-a2c2-ec40699f1489" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "36b1738b-8916-4cdc-8daa-923ea939d85d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14056" + ], + "x-ms-correlation-request-id": [ + "99576d44-d0fd-41ed-8ce7-9240ab83a97e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185348Z:99576d44-d0fd-41ed-8ce7-9240ab83a97e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8abfac3c-2b63-41af-b557-3ab1324ae601" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14055" + ], + "x-ms-correlation-request-id": [ + "b837545c-afc6-4796-ac54-fa5da2f7aa4a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185348Z:b837545c-afc6-4796-ac54-fa5da2f7aa4a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f1a52af0-f23f-47e9-8fb3-4d68419fd977" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14054" + ], + "x-ms-correlation-request-id": [ + "4eb1c785-4ed0-46f6-97ff-ab01d8911b48" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185348Z:4eb1c785-4ed0-46f6-97ff-ab01d8911b48" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6482b46-9b89-48fe-8b13-9e9071be2d64" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14053" + ], + "x-ms-correlation-request-id": [ + "82789a63-86c4-4647-b770-e357586ca43a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185349Z:82789a63-86c4-4647-b770-e357586ca43a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "65a6d7a2-08e1-48fb-93cd-8c9b5e893618" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14052" + ], + "x-ms-correlation-request-id": [ + "5fa058ac-e912-4184-b483-3b6ecbc45113" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185349Z:5fa058ac-e912-4184-b483-3b6ecbc45113" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6d6442b1-eea4-4588-9f55-956b0de017ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14051" + ], + "x-ms-correlation-request-id": [ + "8c8b7c6d-de51-4224-a062-faa812c8e935" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185349Z:8c8b7c6d-de51-4224-a062-faa812c8e935" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "67b21a6c-fae7-4cdb-b9e3-cb3c8f3d8ca2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14050" + ], + "x-ms-correlation-request-id": [ + "642fe83e-d98e-479c-b5e6-3a483c8387e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185349Z:642fe83e-d98e-479c-b5e6-3a483c8387e4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fe2cce51-06fa-489d-b6eb-1c3fd9ecb442" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14049" + ], + "x-ms-correlation-request-id": [ + "8036f467-6830-429b-b4e6-3ea07c6670d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185350Z:8036f467-6830-429b-b4e6-3ea07c6670d9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6cb26fd7-601b-4e6d-8137-afb26f93a64b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14048" + ], + "x-ms-correlation-request-id": [ + "906896f2-dca0-498b-8478-45a5681f82b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185350Z:906896f2-dca0-498b-8478-45a5681f82b3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "49d440f6-3089-428a-b81e-0d02ccddc551" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14047" + ], + "x-ms-correlation-request-id": [ + "f2d62c11-fd0a-40fc-8afa-68f39fe57099" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185350Z:f2d62c11-fd0a-40fc-8afa-68f39fe57099" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04e8c74e-ee20-4c5c-be9a-e6378191d301" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14046" + ], + "x-ms-correlation-request-id": [ + "8c90113b-5cf2-40e8-bca7-376e78079735" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185350Z:8c90113b-5cf2-40e8-bca7-376e78079735" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "003ce643-2c11-4b82-8bd5-2ecb0c8043be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14045" + ], + "x-ms-correlation-request-id": [ + "e45c74ac-e626-4e19-a962-c234a16f7e14" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185351Z:e45c74ac-e626-4e19-a962-c234a16f7e14" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a4198568-26fa-4066-9ad7-12796c9240c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14044" + ], + "x-ms-correlation-request-id": [ + "0af9b6b8-87d6-42a2-823b-367022f243d4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185351Z:0af9b6b8-87d6-42a2-823b-367022f243d4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3fe4564b-3717-4a07-9a04-bd0dedd855f6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14043" + ], + "x-ms-correlation-request-id": [ + "d01a2cb8-3ea2-4456-815c-a1a622fc326d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185351Z:d01a2cb8-3ea2-4456-815c-a1a622fc326d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a9a2a655-f230-4b6f-b38b-08488bdd669e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14042" + ], + "x-ms-correlation-request-id": [ + "fef52094-8687-427b-9d4c-5ce039b3b652" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185351Z:fef52094-8687-427b-9d4c-5ce039b3b652" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "36c12770-be33-498e-86fc-f41602a7c323" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14041" + ], + "x-ms-correlation-request-id": [ + "bb5f8d68-1a4a-4355-b09c-fa960d7f68ed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185351Z:bb5f8d68-1a4a-4355-b09c-fa960d7f68ed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a19b1b4a-58b4-45c4-8a0b-8bac23e15dbe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14040" + ], + "x-ms-correlation-request-id": [ + "c7abecad-3b6f-426c-a742-4f8f180b64c6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185352Z:c7abecad-3b6f-426c-a742-4f8f180b64c6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "afd259ab-4e19-4553-b337-8673affa9643" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14039" + ], + "x-ms-correlation-request-id": [ + "a3eac3e8-3abf-4654-8206-da77d9255d12" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185352Z:a3eac3e8-3abf-4654-8206-da77d9255d12" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dda4c81a-d439-4a54-88bd-ce5e3c5063c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14038" + ], + "x-ms-correlation-request-id": [ + "dc84197b-dd1a-4163-a374-710d0386b6f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185352Z:dc84197b-dd1a-4163-a374-710d0386b6f1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0a350f29-8b05-472e-8b4d-257845d857e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14037" + ], + "x-ms-correlation-request-id": [ + "47f752a0-9b26-499f-947f-6fa269515599" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185352Z:47f752a0-9b26-499f-947f-6fa269515599" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "543706c4-ec8c-4cbe-ab48-ca404fc1db23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14036" + ], + "x-ms-correlation-request-id": [ + "36c6e38c-0fb1-4e0c-8369-d307e96517ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185353Z:36c6e38c-0fb1-4e0c-8369-d307e96517ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d12e120c-5343-45c4-9d5d-2ce96f191583" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14035" + ], + "x-ms-correlation-request-id": [ + "a291a103-b661-4dce-b505-f89ab14490c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185353Z:a291a103-b661-4dce-b505-f89ab14490c0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d95ff42a-0410-4340-b2a0-130b396078ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14034" + ], + "x-ms-correlation-request-id": [ + "8c10dbad-f6ec-4e9d-bdd3-9f194dda324b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185353Z:8c10dbad-f6ec-4e9d-bdd3-9f194dda324b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "df066987-b425-4814-8bd9-c24d468f8801" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14033" + ], + "x-ms-correlation-request-id": [ + "50460214-fa11-4ad9-bce1-703a963ae8e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185353Z:50460214-fa11-4ad9-bce1-703a963ae8e8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4baaf7dd-24f4-4ad2-a9ea-11b050d22abb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14032" + ], + "x-ms-correlation-request-id": [ + "d06a99a5-33de-4fd3-84a6-d1810bb62e06" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185353Z:d06a99a5-33de-4fd3-84a6-d1810bb62e06" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "67b88eba-04bf-48c9-9df0-c50152407c73" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14031" + ], + "x-ms-correlation-request-id": [ + "b1ebdd79-8aed-4b7e-948e-73ade30584fc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185354Z:b1ebdd79-8aed-4b7e-948e-73ade30584fc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "db39faf5-1174-466d-9f59-c45fe670bb0c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14030" + ], + "x-ms-correlation-request-id": [ + "05b3be6e-29c4-474a-9128-9735ed3a290a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185354Z:05b3be6e-29c4-474a-9128-9735ed3a290a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c4e4169a-93c8-4154-8829-e2912d8f47a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14029" + ], + "x-ms-correlation-request-id": [ + "1004e1c2-fb08-4486-a624-f275890abd07" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185354Z:1004e1c2-fb08-4486-a624-f275890abd07" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6d563891-0573-444f-9d18-1728ae11f28a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14028" + ], + "x-ms-correlation-request-id": [ + "20199cf6-25ad-4413-a7ab-0e9326763e0e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185354Z:20199cf6-25ad-4413-a7ab-0e9326763e0e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bc227dcb-d976-4455-adb1-f185e9680a4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14027" + ], + "x-ms-correlation-request-id": [ + "86e1eb0f-d912-4939-a41a-c9ce72901944" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185355Z:86e1eb0f-d912-4939-a41a-c9ce72901944" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0fef1f0c-e68a-47fd-a417-3b093995b86d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14026" + ], + "x-ms-correlation-request-id": [ + "0a077578-74a1-4b3f-8eca-8cc4c6ba3236" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185355Z:0a077578-74a1-4b3f-8eca-8cc4c6ba3236" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25a6c89c-a62b-4a13-9008-1441244377c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14025" + ], + "x-ms-correlation-request-id": [ + "a93b7cf3-0250-4d65-a2af-957b2ebdf1dc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185355Z:a93b7cf3-0250-4d65-a2af-957b2ebdf1dc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f9cf21bd-f149-4a02-a8da-090f39471491" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14024" + ], + "x-ms-correlation-request-id": [ + "d04de355-6f1c-4d38-9282-e63ef8e12a6b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185355Z:d04de355-6f1c-4d38-9282-e63ef8e12a6b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2a210f2b-0492-44f2-af27-0b3a438d47d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14023" + ], + "x-ms-correlation-request-id": [ + "341050aa-3407-42ae-9aa5-ead5d081a287" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185355Z:341050aa-3407-42ae-9aa5-ead5d081a287" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5cf0bf26-7727-4792-9a86-ea069fff3ff6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14022" + ], + "x-ms-correlation-request-id": [ + "a1d3bb40-a57f-4201-82c9-a8ed61285552" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185356Z:a1d3bb40-a57f-4201-82c9-a8ed61285552" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cc11ed4c-3708-4cef-9613-16dec4230a9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14021" + ], + "x-ms-correlation-request-id": [ + "d58547c3-32dc-46ad-adfc-5da9ef06722e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185356Z:d58547c3-32dc-46ad-adfc-5da9ef06722e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bd3a8a63-0697-419c-944d-165b1d1e3d52" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14020" + ], + "x-ms-correlation-request-id": [ + "483f2939-c08e-4636-8fea-e6aaf1a12042" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185356Z:483f2939-c08e-4636-8fea-e6aaf1a12042" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a47b7b6-50f7-4ca2-9fe3-29b62b09b293" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14019" + ], + "x-ms-correlation-request-id": [ + "fb29e22c-8a8b-40e9-9114-414a8a1cc0d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185356Z:fb29e22c-8a8b-40e9-9114-414a8a1cc0d6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d02bdaff-3686-4ce6-8922-62a634bfd637" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14018" + ], + "x-ms-correlation-request-id": [ + "fe5dad47-67af-4323-a22b-345645935ff1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185357Z:fe5dad47-67af-4323-a22b-345645935ff1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4147ad72-2133-4cb1-b0bb-14d5caa3936c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14017" + ], + "x-ms-correlation-request-id": [ + "7e203d7f-d2de-4ed5-9b3d-770c25f426f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185357Z:7e203d7f-d2de-4ed5-9b3d-770c25f426f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b54c79e6-8982-4909-9206-583caf5ffc1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14016" + ], + "x-ms-correlation-request-id": [ + "7ee0fa9a-21b7-4e73-98fc-4724bd61874a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185357Z:7ee0fa9a-21b7-4e73-98fc-4724bd61874a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48d756b8-d49a-47f8-86b9-eb8a22b6e097" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14015" + ], + "x-ms-correlation-request-id": [ + "2cd9d6ca-df43-4441-980f-c299bfb68d4e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185357Z:2cd9d6ca-df43-4441-980f-c299bfb68d4e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e1649c9c-e95a-4a24-8a3e-01176fbba136" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14014" + ], + "x-ms-correlation-request-id": [ + "250b16b7-9714-467e-bbf2-e9a78148d711" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185357Z:250b16b7-9714-467e-bbf2-e9a78148d711" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dd3e0c2a-6111-48e5-a159-2eb8d85b58d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14013" + ], + "x-ms-correlation-request-id": [ + "7c179edd-e6ad-4fde-bba5-1a3969a62ffd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185358Z:7c179edd-e6ad-4fde-bba5-1a3969a62ffd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6d516d13-c20c-41e8-85fc-5312be287e72" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14012" + ], + "x-ms-correlation-request-id": [ + "c12486ed-3d8c-4b21-9fe5-69e90753e75f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185358Z:c12486ed-3d8c-4b21-9fe5-69e90753e75f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5fba2651-dce8-4db6-b82c-f86d515a49fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14011" + ], + "x-ms-correlation-request-id": [ + "125fd9f8-11a9-4b0c-8746-28ff3818a282" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185358Z:125fd9f8-11a9-4b0c-8746-28ff3818a282" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c7bd0e1b-e41d-4589-9809-1ab887fdfcf4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14010" + ], + "x-ms-correlation-request-id": [ + "e94cda84-4025-4fba-af74-5348c8486f89" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185358Z:e94cda84-4025-4fba-af74-5348c8486f89" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "97d71794-0ee4-4189-9b41-357bd20116ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14009" + ], + "x-ms-correlation-request-id": [ + "cfd14f5f-f520-4492-87f9-2834bea7f89e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185359Z:cfd14f5f-f520-4492-87f9-2834bea7f89e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f54194b2-5458-490c-9238-799481b31460" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14008" + ], + "x-ms-correlation-request-id": [ + "54456f4c-8d4a-49a8-8384-fa86c01cf822" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185359Z:54456f4c-8d4a-49a8-8384-fa86c01cf822" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "669d49c8-87cb-471d-ac86-c670392fd9d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14007" + ], + "x-ms-correlation-request-id": [ + "f6f42ace-52ec-4ce6-9615-189aaa73c953" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185359Z:f6f42ace-52ec-4ce6-9615-189aaa73c953" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "69ed4d7f-8f8b-45c7-8e6d-f35423947796" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14006" + ], + "x-ms-correlation-request-id": [ + "ea3ed1c8-1708-4a48-b16a-357e58cdc7df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185359Z:ea3ed1c8-1708-4a48-b16a-357e58cdc7df" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e59d5925-ca75-4d6a-94ac-5e1cf828a74b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14005" + ], + "x-ms-correlation-request-id": [ + "cde811cf-3a9d-4040-ad3c-d3f7ed2c0649" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185359Z:cde811cf-3a9d-4040-ad3c-d3f7ed2c0649" + ], + "Date": [ + "Mon, 06 Nov 2017 18:53:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7e19a4c5-ef2e-4d24-b8ea-361304049579" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14004" + ], + "x-ms-correlation-request-id": [ + "eed2441c-e421-4721-9592-8f8b51f3ca83" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185400Z:eed2441c-e421-4721-9592-8f8b51f3ca83" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7a9c7685-740e-446a-b472-1d9aef1db623" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14003" + ], + "x-ms-correlation-request-id": [ + "d2df4093-2901-4b48-81b4-81477c762419" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185400Z:d2df4093-2901-4b48-81b4-81477c762419" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "54d86f60-5b00-451e-bc6e-55ef3bbf995f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14002" + ], + "x-ms-correlation-request-id": [ + "d8ce696c-cd9a-440d-ae76-8f96424f120c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185400Z:d8ce696c-cd9a-440d-ae76-8f96424f120c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8251832e-cf06-4cd0-91af-8325dd1b10d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14001" + ], + "x-ms-correlation-request-id": [ + "885c9080-3948-40a2-b871-20afa90a031e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185400Z:885c9080-3948-40a2-b871-20afa90a031e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "85fdd109-5f45-401a-b171-3cfeb3dbae5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14000" + ], + "x-ms-correlation-request-id": [ + "a513b9f7-e7ee-4596-878b-95502fe5f18a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185401Z:a513b9f7-e7ee-4596-878b-95502fe5f18a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0a6c1ad8-0716-45f1-9195-39ac0f1cd652" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13999" + ], + "x-ms-correlation-request-id": [ + "0f1b951b-434b-4b02-b829-7c789363ad4a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185401Z:0f1b951b-434b-4b02-b829-7c789363ad4a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cb4d167d-8abb-4089-b26b-aca97e732895" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13998" + ], + "x-ms-correlation-request-id": [ + "82ecfd49-3cc6-4532-b8ac-89222f1bcf2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185401Z:82ecfd49-3cc6-4532-b8ac-89222f1bcf2f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "632f78a5-b037-4d08-a7d4-486fbf0ffd60" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13997" + ], + "x-ms-correlation-request-id": [ + "f2dbcd86-4ec5-4116-8851-f853f88d29c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185401Z:f2dbcd86-4ec5-4116-8851-f853f88d29c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8576b00f-ae96-4009-89cf-e5b21e252e23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13996" + ], + "x-ms-correlation-request-id": [ + "95dc605e-1ea9-4266-b015-977d9841d3e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185401Z:95dc605e-1ea9-4266-b015-977d9841d3e2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "29d82577-b25b-4dc8-9024-f4c4e0fe736e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13995" + ], + "x-ms-correlation-request-id": [ + "83679e16-166e-420b-be5b-80f30ec42d3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185402Z:83679e16-166e-420b-be5b-80f30ec42d3b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "662dfc9a-c9d0-4362-b7a0-bf74e35cadf7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13994" + ], + "x-ms-correlation-request-id": [ + "6717f035-7f21-4fa1-9899-951e2dbe1fcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185402Z:6717f035-7f21-4fa1-9899-951e2dbe1fcc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e1696161-d9d9-43c8-bea2-f1fa9bae5b61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13993" + ], + "x-ms-correlation-request-id": [ + "96d1dac4-163f-4871-a04a-3ddb105e25e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185402Z:96d1dac4-163f-4871-a04a-3ddb105e25e7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "750d6856-fd76-4fe4-98b8-235b466b604a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13992" + ], + "x-ms-correlation-request-id": [ + "f71f658e-3dce-43b7-ae21-dd51b37df74d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185402Z:f71f658e-3dce-43b7-ae21-dd51b37df74d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b3bb6d97-3997-4699-84e4-ac5dab722625" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13991" + ], + "x-ms-correlation-request-id": [ + "fd168d79-7987-429c-ac57-ed1f9863dda9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185403Z:fd168d79-7987-429c-ac57-ed1f9863dda9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "35914a86-4bc0-4e2e-8ef9-11fa583fbb9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13990" + ], + "x-ms-correlation-request-id": [ + "96196696-447f-443c-bb00-e31cc224fafc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185403Z:96196696-447f-443c-bb00-e31cc224fafc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "19672333-3f49-4973-861e-b00242d323af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13989" + ], + "x-ms-correlation-request-id": [ + "c608eb6c-08c0-44a3-a1a5-15f76dc5c212" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185403Z:c608eb6c-08c0-44a3-a1a5-15f76dc5c212" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "746a9b53-8be3-4ede-9329-ed01c265c35e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13988" + ], + "x-ms-correlation-request-id": [ + "5fa3739c-b13f-4676-b5b3-084fa27bc6ed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185403Z:5fa3739c-b13f-4676-b5b3-084fa27bc6ed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "37ffebd8-f8d6-449a-8773-530d5663f0a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13987" + ], + "x-ms-correlation-request-id": [ + "1feed263-da86-42dc-b2be-184fa517e5f2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185403Z:1feed263-da86-42dc-b2be-184fa517e5f2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1b6db6be-72fa-4f77-b6ef-880d5c520739" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13986" + ], + "x-ms-correlation-request-id": [ + "1f843957-0ad7-499d-a7d9-e8b643c3cea4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185404Z:1f843957-0ad7-499d-a7d9-e8b643c3cea4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d48beb89-451d-467c-a58a-e63f5af15563" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13985" + ], + "x-ms-correlation-request-id": [ + "10381501-f45f-4824-83c0-ce2902333590" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185404Z:10381501-f45f-4824-83c0-ce2902333590" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4e3f0238-06f8-4eae-b999-08752a15e700" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13984" + ], + "x-ms-correlation-request-id": [ + "a2704a4c-c8e1-4dcb-9e8e-d710a037ef2e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185404Z:a2704a4c-c8e1-4dcb-9e8e-d710a037ef2e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "35df7ae9-45e6-4484-bebb-a5ec2376f4f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13983" + ], + "x-ms-correlation-request-id": [ + "6be250ab-43ac-4a38-b624-6e03d363250e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185404Z:6be250ab-43ac-4a38-b624-6e03d363250e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "846486ac-fe95-4db6-aefb-d6bcdd515e76" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13982" + ], + "x-ms-correlation-request-id": [ + "3ebf965f-3178-43f2-a0ba-e1f3c67d5dc3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185405Z:3ebf965f-3178-43f2-a0ba-e1f3c67d5dc3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "81ab0d3c-98d4-4438-8c1b-7bea9ce33be0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13981" + ], + "x-ms-correlation-request-id": [ + "52958aba-33ec-48f3-ac72-8faa8abf5997" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185405Z:52958aba-33ec-48f3-ac72-8faa8abf5997" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "babbf8da-6f09-429b-a08a-6e3d6ac28e79" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13980" + ], + "x-ms-correlation-request-id": [ + "dd417a7b-d89f-40b3-b2d9-163efe344027" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185405Z:dd417a7b-d89f-40b3-b2d9-163efe344027" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fecba5b5-0623-46f3-ab49-a69c58b830c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13979" + ], + "x-ms-correlation-request-id": [ + "0a212f96-b681-453c-8021-dd56b25b10a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185405Z:0a212f96-b681-453c-8021-dd56b25b10a1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "015a0817-a99c-45d6-878f-757f0d84139c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13978" + ], + "x-ms-correlation-request-id": [ + "7c1ba3c4-0c20-490e-90e1-faf7f9da46b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185406Z:7c1ba3c4-0c20-490e-90e1-faf7f9da46b0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4439e890-eda5-42f6-9fa4-20ac30c8f792" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13977" + ], + "x-ms-correlation-request-id": [ + "26fe9dd4-b80f-42ba-9d17-6be02fe0d71b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185406Z:26fe9dd4-b80f-42ba-9d17-6be02fe0d71b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "87a94c04-569d-4293-b4da-5a30517dd91a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13976" + ], + "x-ms-correlation-request-id": [ + "bb7e91b0-28b8-4f98-958a-699a2d453995" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185406Z:bb7e91b0-28b8-4f98-958a-699a2d453995" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6346ac0-46f3-45aa-a83c-6a68d14fbed4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13975" + ], + "x-ms-correlation-request-id": [ + "54798ab3-5933-47b5-9514-d74c98de2cd0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185406Z:54798ab3-5933-47b5-9514-d74c98de2cd0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e4cbb1aa-a3b5-4ee0-a21a-754f1caf425b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13974" + ], + "x-ms-correlation-request-id": [ + "110cf79c-1c83-4e34-ba25-a5b9dbcafb4f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185407Z:110cf79c-1c83-4e34-ba25-a5b9dbcafb4f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c3a22043-cba5-450d-890b-25543dd9fe9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13973" + ], + "x-ms-correlation-request-id": [ + "269502dd-73fd-4bde-88c6-8678fa935490" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185407Z:269502dd-73fd-4bde-88c6-8678fa935490" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6b9ee27-da62-4c70-bba8-c30a1e6a97b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13972" + ], + "x-ms-correlation-request-id": [ + "c5faf551-1acf-488b-b17f-e6e7e0c66fc8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185407Z:c5faf551-1acf-488b-b17f-e6e7e0c66fc8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "783d82c5-1ad3-41ea-8902-adaa4e3e1ebb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13971" + ], + "x-ms-correlation-request-id": [ + "c77f8bfa-d20b-4532-ab5d-735cc9231cab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185407Z:c77f8bfa-d20b-4532-ab5d-735cc9231cab" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a2e5390b-ed34-44f4-bca3-2f7c97715475" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13970" + ], + "x-ms-correlation-request-id": [ + "e83ad510-3be0-4866-9a1f-95b7fda8abcb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185407Z:e83ad510-3be0-4866-9a1f-95b7fda8abcb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5885591-8e26-4368-9129-6c894c1f522a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13969" + ], + "x-ms-correlation-request-id": [ + "1060f1b3-c27f-4c7d-81fe-d96c44c1bc0b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185408Z:1060f1b3-c27f-4c7d-81fe-d96c44c1bc0b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "479e538e-90bf-4d1a-961d-d41c23359b98" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13968" + ], + "x-ms-correlation-request-id": [ + "728e3abf-a42b-4942-85c5-2a61e7157fc0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185408Z:728e3abf-a42b-4942-85c5-2a61e7157fc0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9636de73-7b6d-42b2-848c-d7ba0d6fa3d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13967" + ], + "x-ms-correlation-request-id": [ + "729041e6-f25e-4a2a-b0ca-79186f51d848" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185408Z:729041e6-f25e-4a2a-b0ca-79186f51d848" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4170314d-15e9-436b-b4a2-4de4ec2f8c86" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13966" + ], + "x-ms-correlation-request-id": [ + "1bd00208-3b69-45b4-9390-c845d9071f34" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185408Z:1bd00208-3b69-45b4-9390-c845d9071f34" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d5f94f3e-9778-4d5d-9b90-1aed0bde2783" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13965" + ], + "x-ms-correlation-request-id": [ + "a5070085-0fbd-4013-ac2a-326c1f4f014a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185409Z:a5070085-0fbd-4013-ac2a-326c1f4f014a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b4eba4c1-f790-46f5-abba-797a8987bb83" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13964" + ], + "x-ms-correlation-request-id": [ + "10f896ff-b9e6-40d7-a85e-285db223f48a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185409Z:10f896ff-b9e6-40d7-a85e-285db223f48a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9c2b29cc-623b-4551-b075-258dc528862b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13963" + ], + "x-ms-correlation-request-id": [ + "aa882a85-430a-4038-9160-5f730c2582e0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185409Z:aa882a85-430a-4038-9160-5f730c2582e0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "43fdf35f-0fba-48b2-b704-08c0e10de7cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13962" + ], + "x-ms-correlation-request-id": [ + "ab0a0471-4217-4113-a8b8-aba7c57a091c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185409Z:ab0a0471-4217-4113-a8b8-aba7c57a091c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e82ac81-0505-4475-8140-e3be12243798" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13961" + ], + "x-ms-correlation-request-id": [ + "4b684bf6-ae51-44c7-bea9-b8f04ef59444" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185409Z:4b684bf6-ae51-44c7-bea9-b8f04ef59444" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7d76094d-c374-43a1-886d-f484aa9eff00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13960" + ], + "x-ms-correlation-request-id": [ + "7c0dcb93-1677-47d3-be55-e1ec680df7a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185410Z:7c0dcb93-1677-47d3-be55-e1ec680df7a4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74d3a48f-4edb-43de-9389-ae1a6f8712c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13959" + ], + "x-ms-correlation-request-id": [ + "3d53dcdb-e9db-4622-888e-e214c03ce3b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185410Z:3d53dcdb-e9db-4622-888e-e214c03ce3b6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "907c100e-7988-4ee0-bee1-9f1eb88b5a2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13958" + ], + "x-ms-correlation-request-id": [ + "479eed41-9de1-4eed-b51f-95b0bca6dd88" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185410Z:479eed41-9de1-4eed-b51f-95b0bca6dd88" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a112e81c-7b0c-48e1-9bfa-844104bdd996" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13957" + ], + "x-ms-correlation-request-id": [ + "157e8ae4-c31f-4dcc-a563-6251e4a172b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185410Z:157e8ae4-c31f-4dcc-a563-6251e4a172b1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "71a3675b-dad2-4471-845e-2c5979658a20" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13956" + ], + "x-ms-correlation-request-id": [ + "3fe5a23c-bc04-479c-85ee-19035bc1100b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185411Z:3fe5a23c-bc04-479c-85ee-19035bc1100b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d91e1fe5-154b-4871-8167-e8ea053caf53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13955" + ], + "x-ms-correlation-request-id": [ + "a470d1a2-f0ee-464d-b0ae-ae099f0996bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185411Z:a470d1a2-f0ee-464d-b0ae-ae099f0996bc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "40315ed0-2610-483f-9c10-2f21186c23b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13954" + ], + "x-ms-correlation-request-id": [ + "f9107c76-188d-4ca1-bdb1-6c8b2d9df884" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185411Z:f9107c76-188d-4ca1-bdb1-6c8b2d9df884" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "10df61ce-689a-41ec-8ac9-0b55a17b8437" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13953" + ], + "x-ms-correlation-request-id": [ + "57d1fddc-5814-4465-b7bb-1030be155761" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185411Z:57d1fddc-5814-4465-b7bb-1030be155761" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3d4039e1-221f-4fdc-a2ea-f096105984d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13952" + ], + "x-ms-correlation-request-id": [ + "86a097a1-5b84-40f2-919e-88f727830d47" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185411Z:86a097a1-5b84-40f2-919e-88f727830d47" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04a82d01-172f-4d52-aaf1-4016fd119197" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13951" + ], + "x-ms-correlation-request-id": [ + "c540bf7e-d8f9-47d3-b016-26c5afba077f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185412Z:c540bf7e-d8f9-47d3-b016-26c5afba077f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d0bc0067-b8e1-4dfd-98f2-5b82cf9a4d09" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13950" + ], + "x-ms-correlation-request-id": [ + "236536f2-4850-46fd-8d08-307ef95665d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185412Z:236536f2-4850-46fd-8d08-307ef95665d7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f7b4634c-8c9a-44c3-b105-2753e7d84b72" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13949" + ], + "x-ms-correlation-request-id": [ + "eba6d6a7-5a95-4371-8ed9-7c759855b921" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185412Z:eba6d6a7-5a95-4371-8ed9-7c759855b921" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6c15a239-d0fd-4827-9b50-a40b7fd0e38c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13948" + ], + "x-ms-correlation-request-id": [ + "6a60dbb0-b299-44ac-b2c9-62dc50c8c71d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185412Z:6a60dbb0-b299-44ac-b2c9-62dc50c8c71d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3d093b5e-1708-48ab-a886-50d3ed2958f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13947" + ], + "x-ms-correlation-request-id": [ + "d2b7970a-c8fc-4a97-b996-05da1642e2ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185412Z:d2b7970a-c8fc-4a97-b996-05da1642e2ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "96ff3c29-6a63-4edf-88e4-39a314da1583" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13946" + ], + "x-ms-correlation-request-id": [ + "3fb4cbd7-588a-4118-944c-31c04ec88dfb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185413Z:3fb4cbd7-588a-4118-944c-31c04ec88dfb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bb0e63f9-0692-4a02-acd1-b0fa46bb7ae5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13945" + ], + "x-ms-correlation-request-id": [ + "e31936ca-3420-4ec1-9df0-d1068ede5455" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185413Z:e31936ca-3420-4ec1-9df0-d1068ede5455" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9767f306-9e06-4d28-8922-a0e367985a21" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13944" + ], + "x-ms-correlation-request-id": [ + "fde1b4bb-9471-408f-aab0-e681fdb0b5e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185413Z:fde1b4bb-9471-408f-aab0-e681fdb0b5e7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c3760d61-05e7-4dcf-aee4-1a6637f9d7f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13943" + ], + "x-ms-correlation-request-id": [ + "79c4eff3-1620-4352-bbdb-509c9e616bd2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185413Z:79c4eff3-1620-4352-bbdb-509c9e616bd2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "11c9d1e4-ef75-43e8-b319-ded01708e71c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13942" + ], + "x-ms-correlation-request-id": [ + "52c1121c-a72a-4f86-9d34-0465f1307d3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185414Z:52c1121c-a72a-4f86-9d34-0465f1307d3b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44280994-1f75-4d51-913b-dccfe1b61bdd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13941" + ], + "x-ms-correlation-request-id": [ + "8557a277-95ee-421d-a985-3683c18bd4fe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185414Z:8557a277-95ee-421d-a985-3683c18bd4fe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "31efb025-7443-48e6-b104-d58db1e8328a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13940" + ], + "x-ms-correlation-request-id": [ + "e2d7af08-2e58-48df-8601-f6587e067bf5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185414Z:e2d7af08-2e58-48df-8601-f6587e067bf5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "59dbb6f2-fe2f-40bd-9836-8e859e1ca48a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13939" + ], + "x-ms-correlation-request-id": [ + "a2c49ee2-e80c-40a8-8bbb-105163323d5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185414Z:a2c49ee2-e80c-40a8-8bbb-105163323d5e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "714ae88f-b9c8-4400-8d71-9751e52dc1e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13938" + ], + "x-ms-correlation-request-id": [ + "199f5b4f-8fd1-4cf7-acaf-ec8ae6790fe7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185415Z:199f5b4f-8fd1-4cf7-acaf-ec8ae6790fe7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "be095fa2-fa2f-4c14-a30a-1cc0f4801c06" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13937" + ], + "x-ms-correlation-request-id": [ + "6323c781-8efd-4d91-b380-2e9bf952e6c8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185415Z:6323c781-8efd-4d91-b380-2e9bf952e6c8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b8d9f0c6-6ea5-4fb3-95ff-9ea15868e03e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13936" + ], + "x-ms-correlation-request-id": [ + "18e715fb-5417-44d0-800d-3c25f2c22181" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185415Z:18e715fb-5417-44d0-800d-3c25f2c22181" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fe4265fd-8ac0-40c9-a1a8-7c594cfcd4e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13935" + ], + "x-ms-correlation-request-id": [ + "e2905bfe-866c-450f-b795-37ebdf3f4be6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185415Z:e2905bfe-866c-450f-b795-37ebdf3f4be6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f33ac05d-1007-4866-ba64-49d675724578" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13934" + ], + "x-ms-correlation-request-id": [ + "274791a7-4ada-42f7-8bac-e4c6d9ce456b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185415Z:274791a7-4ada-42f7-8bac-e4c6d9ce456b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fb384427-41ab-4f1f-a9ed-9e82bb4635bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13933" + ], + "x-ms-correlation-request-id": [ + "f102a54d-c11c-465e-8b0a-67636b278353" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185416Z:f102a54d-c11c-465e-8b0a-67636b278353" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9ac913a2-dabb-4990-a2a5-74541601df9e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13932" + ], + "x-ms-correlation-request-id": [ + "7365920c-87ca-48c5-abaa-d1d5fbe5aa87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185416Z:7365920c-87ca-48c5-abaa-d1d5fbe5aa87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "281e413a-3cd6-4b9d-a222-286881feb2fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13931" + ], + "x-ms-correlation-request-id": [ + "506628d5-e9c1-4968-8910-a3ebd420d73a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185416Z:506628d5-e9c1-4968-8910-a3ebd420d73a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3723e43a-98fb-4e5e-9af7-6bb3a3997c01" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13930" + ], + "x-ms-correlation-request-id": [ + "004a6186-8c46-44b7-adba-29df4029ee7e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185416Z:004a6186-8c46-44b7-adba-29df4029ee7e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7fbff135-78c9-4ed8-a0a9-4835b54fda90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13929" + ], + "x-ms-correlation-request-id": [ + "3e0e1dd3-1156-4789-9023-741f01c4f4af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185417Z:3e0e1dd3-1156-4789-9023-741f01c4f4af" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "658280bd-1acf-4075-b6ed-f338b1e16bf5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13928" + ], + "x-ms-correlation-request-id": [ + "2e0bc4a8-d9fd-4d12-94b1-ea9e3d07de10" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185417Z:2e0bc4a8-d9fd-4d12-94b1-ea9e3d07de10" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9b5c624d-71d7-4933-aee3-c19ee281247e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13927" + ], + "x-ms-correlation-request-id": [ + "7f1e1526-66ae-4d89-bd81-474a9be1d3e0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185417Z:7f1e1526-66ae-4d89-bd81-474a9be1d3e0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2b825d7c-12d7-4fd6-ab81-930c7b99a916" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13926" + ], + "x-ms-correlation-request-id": [ + "eda23a3c-c7a1-44fe-ac30-ae35f809ba50" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185417Z:eda23a3c-c7a1-44fe-ac30-ae35f809ba50" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ad52b6d5-5fa9-4b57-8734-abff246808a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13925" + ], + "x-ms-correlation-request-id": [ + "85253091-3059-4464-8a7b-0e17ad8e75c2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185417Z:85253091-3059-4464-8a7b-0e17ad8e75c2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bf415038-6ee6-4474-ba51-e5a1a302b0da" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13924" + ], + "x-ms-correlation-request-id": [ + "982d0ea6-8bf8-4ce0-9ddb-e630b86e3bc6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185418Z:982d0ea6-8bf8-4ce0-9ddb-e630b86e3bc6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1d7b7253-f9ef-49c8-b244-15c86022588d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13923" + ], + "x-ms-correlation-request-id": [ + "8ce9f1ba-6672-42e8-8ca3-ca9350ce7de9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185418Z:8ce9f1ba-6672-42e8-8ca3-ca9350ce7de9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5ff1a48c-15e7-4b51-a355-ce2df62eefd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13922" + ], + "x-ms-correlation-request-id": [ + "49194612-ffa1-4382-8ffe-40fd6e20cd11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185418Z:49194612-ffa1-4382-8ffe-40fd6e20cd11" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ca321372-5cae-4e56-9fbc-93e80ad6c4eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13921" + ], + "x-ms-correlation-request-id": [ + "bbe489ab-0725-4a96-bbcb-028662279abe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185418Z:bbe489ab-0725-4a96-bbcb-028662279abe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da2e1b15-439d-491c-8cb3-2f015de67a97" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13920" + ], + "x-ms-correlation-request-id": [ + "9a55117d-4dff-491c-aa44-95d2b0289236" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185419Z:9a55117d-4dff-491c-aa44-95d2b0289236" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "783d3ce9-e221-4342-a361-aa55666ca58b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13919" + ], + "x-ms-correlation-request-id": [ + "14bcd4be-6009-4768-9f48-3f9b5d2cfa26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185419Z:14bcd4be-6009-4768-9f48-3f9b5d2cfa26" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2cef2f71-8662-488e-a02f-ce46c0797338" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13918" + ], + "x-ms-correlation-request-id": [ + "d6914b74-6635-4609-80a5-36b8e32101cf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185419Z:d6914b74-6635-4609-80a5-36b8e32101cf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bbcc8bfe-91dc-4ce8-ad8c-0327608f8061" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13917" + ], + "x-ms-correlation-request-id": [ + "895b5f8c-9f91-41c0-af44-3a115d2e900f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185419Z:895b5f8c-9f91-41c0-af44-3a115d2e900f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a7419ebc-ae67-4c13-882d-dd82e8c6e386" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13916" + ], + "x-ms-correlation-request-id": [ + "37da90b8-2466-4cf2-952b-5abe96e6fc6d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185419Z:37da90b8-2466-4cf2-952b-5abe96e6fc6d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e16c2b9a-d7dd-4480-bc9c-c483f12af9af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13915" + ], + "x-ms-correlation-request-id": [ + "6f3f861e-aca4-489f-a3c3-949e637ead13" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185420Z:6f3f861e-aca4-489f-a3c3-949e637ead13" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "085027fe-336d-4a67-aa55-eee08b005b34" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13914" + ], + "x-ms-correlation-request-id": [ + "7748a8d7-2c1f-401f-8ded-f72a9226a184" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185420Z:7748a8d7-2c1f-401f-8ded-f72a9226a184" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9b2e0dc3-2340-4bbe-a477-987c75fe9b0a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13913" + ], + "x-ms-correlation-request-id": [ + "e7b36dbc-34cf-470f-9f29-a7b0c142d081" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185420Z:e7b36dbc-34cf-470f-9f29-a7b0c142d081" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "601b31d8-88d8-4c0a-86b6-8db693500be7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13912" + ], + "x-ms-correlation-request-id": [ + "0ebbcdbf-ad4b-43ad-9cbb-7d15cc311f1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185420Z:0ebbcdbf-ad4b-43ad-9cbb-7d15cc311f1b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "40842380-09e0-4dcb-8de0-da79b80d4344" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13911" + ], + "x-ms-correlation-request-id": [ + "75aee551-7fd9-4b4a-9724-99e2125f5d8c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185421Z:75aee551-7fd9-4b4a-9724-99e2125f5d8c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25d30703-5f0b-4296-849b-8d0225300ced" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13910" + ], + "x-ms-correlation-request-id": [ + "c7a3e43b-0042-4e0f-a2ed-a144b60531ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185421Z:c7a3e43b-0042-4e0f-a2ed-a144b60531ff" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "089e9037-5a54-48a9-af71-f6650da37e4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13909" + ], + "x-ms-correlation-request-id": [ + "dd04905b-003e-40bb-ad1f-98079866a4be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185421Z:dd04905b-003e-40bb-ad1f-98079866a4be" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "323aa7f3-c00e-4090-b899-474fbd13e36d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13908" + ], + "x-ms-correlation-request-id": [ + "196f4269-92e3-470f-b639-263f4e2a0a0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185421Z:196f4269-92e3-470f-b639-263f4e2a0a0d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f8c0b21e-d80d-4847-88c9-37c7ab3e0b3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13907" + ], + "x-ms-correlation-request-id": [ + "7aa5756e-392b-446c-a6a2-12d21f6f9b52" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185421Z:7aa5756e-392b-446c-a6a2-12d21f6f9b52" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4ef20e9a-bf78-4f3d-8fe2-d45a7d1a196e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13906" + ], + "x-ms-correlation-request-id": [ + "1edb1694-1209-4d9b-9635-2b61295b9bee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185422Z:1edb1694-1209-4d9b-9635-2b61295b9bee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "22b3f1e1-c059-4f5f-b570-f4de3198cf61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13905" + ], + "x-ms-correlation-request-id": [ + "5a9246c5-9a80-4d8f-a51c-aca4d2e7ff27" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185422Z:5a9246c5-9a80-4d8f-a51c-aca4d2e7ff27" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf62c606-b125-4842-9bac-7492c6e3bc10" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13904" + ], + "x-ms-correlation-request-id": [ + "d823af90-5dce-4257-a4d5-cc2b187d00ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185422Z:d823af90-5dce-4257-a4d5-cc2b187d00ee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f511951f-c56a-4e43-84a5-08661c1245af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13903" + ], + "x-ms-correlation-request-id": [ + "7328f336-a7b0-4089-ab04-b5bbd0e27212" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185422Z:7328f336-a7b0-4089-ab04-b5bbd0e27212" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fa342855-87c3-4098-840d-83c041cac6fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13902" + ], + "x-ms-correlation-request-id": [ + "2b9058f1-f9f5-4231-be3b-014716c0d7e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185423Z:2b9058f1-f9f5-4231-be3b-014716c0d7e3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0b9392bf-1a29-4687-b600-4a4593ed2207" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13901" + ], + "x-ms-correlation-request-id": [ + "056ba177-6175-4ff9-8987-2fc42c0c217d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185423Z:056ba177-6175-4ff9-8987-2fc42c0c217d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dbebfa1b-a25b-4815-aa9e-85ecbd6751cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13900" + ], + "x-ms-correlation-request-id": [ + "ba56d24b-d716-42b8-84a9-b2cd3f39e0c7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185423Z:ba56d24b-d716-42b8-84a9-b2cd3f39e0c7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c1acf84-c217-4179-adf1-3245e1de4123" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13899" + ], + "x-ms-correlation-request-id": [ + "3c3b0074-e4bb-425c-8c0c-c54b85199a63" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185423Z:3c3b0074-e4bb-425c-8c0c-c54b85199a63" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c87bce9-7c7f-484f-ae8e-414223b36cbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13898" + ], + "x-ms-correlation-request-id": [ + "0e3248bf-fe56-40ab-b882-056c6ca47956" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185424Z:0e3248bf-fe56-40ab-b882-056c6ca47956" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6fcea7bd-e198-4517-83bb-f719238e305f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13897" + ], + "x-ms-correlation-request-id": [ + "e6e45360-971a-4dad-b35d-46cc2b937546" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185424Z:e6e45360-971a-4dad-b35d-46cc2b937546" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "673af090-3e27-496a-9ef8-0624cdd0ce49" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13896" + ], + "x-ms-correlation-request-id": [ + "d2bb9b92-1745-461a-88e7-855bcf05a9b8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185424Z:d2bb9b92-1745-461a-88e7-855bcf05a9b8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5ab7fa3a-18da-438f-9dad-15fc2291cb33" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13895" + ], + "x-ms-correlation-request-id": [ + "8444228c-9062-4d1e-8001-4338e75be9c6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185424Z:8444228c-9062-4d1e-8001-4338e75be9c6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "870982d4-5511-4015-bb0f-3fd3e2f0ab1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13894" + ], + "x-ms-correlation-request-id": [ + "ab7d8f9c-0bb8-4cc5-b92b-640f203c99eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185424Z:ab7d8f9c-0bb8-4cc5-b92b-640f203c99eb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c768ca26-544c-48ca-a126-b00d5b8ad3ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13893" + ], + "x-ms-correlation-request-id": [ + "c47167bb-8878-47fa-9e63-8243377d0100" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185425Z:c47167bb-8878-47fa-9e63-8243377d0100" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6e308f8-6c68-4179-b814-5231fffb9bcb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13892" + ], + "x-ms-correlation-request-id": [ + "4e77992f-cba2-4156-9011-db1415899228" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185425Z:4e77992f-cba2-4156-9011-db1415899228" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c3ff2099-ca8d-4aab-946c-403be73dbd46" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13891" + ], + "x-ms-correlation-request-id": [ + "109d1929-c4d6-4db4-b163-8bcc360c052e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185425Z:109d1929-c4d6-4db4-b163-8bcc360c052e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "285c269a-a90f-499e-8334-2edefc96f97a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13890" + ], + "x-ms-correlation-request-id": [ + "6c0716d4-65a5-4a69-878d-614f53920c02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185425Z:6c0716d4-65a5-4a69-878d-614f53920c02" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3bfa6665-965e-4127-bcf3-291e98433503" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13889" + ], + "x-ms-correlation-request-id": [ + "b2d0c2d4-494d-4648-b7df-5a008d441208" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185425Z:b2d0c2d4-494d-4648-b7df-5a008d441208" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f3f32e80-468d-48e5-bfc4-3e768360249b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13888" + ], + "x-ms-correlation-request-id": [ + "fd23c0ac-f0ed-4ef6-92f9-6be85518adf7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185426Z:fd23c0ac-f0ed-4ef6-92f9-6be85518adf7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6b43310f-ba9c-423f-9ec7-989728cbab3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13887" + ], + "x-ms-correlation-request-id": [ + "d6bb2a4a-f63c-48ba-980a-c2652c2ec37b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185426Z:d6bb2a4a-f63c-48ba-980a-c2652c2ec37b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a68ad14a-70a7-4567-8e06-44e008c923ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13886" + ], + "x-ms-correlation-request-id": [ + "ead9a712-98fa-4c9a-9647-2827f6af2fc5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185426Z:ead9a712-98fa-4c9a-9647-2827f6af2fc5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b24deae4-8e92-41ec-805a-af22070e2dec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13885" + ], + "x-ms-correlation-request-id": [ + "453366ec-cdb2-4856-9511-edb4bd77a46f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185426Z:453366ec-cdb2-4856-9511-edb4bd77a46f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8a467e02-3c6c-4c74-9c29-01935fe4f773" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13884" + ], + "x-ms-correlation-request-id": [ + "28faeb7d-a071-417e-ba1c-c3bb37895e3d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185427Z:28faeb7d-a071-417e-ba1c-c3bb37895e3d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6530c29-dc45-4dfb-9d83-538839dbc72e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13883" + ], + "x-ms-correlation-request-id": [ + "3f0ad077-d1ef-4edf-a4e1-116c25d879df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185427Z:3f0ad077-d1ef-4edf-a4e1-116c25d879df" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f3891bc5-ff25-481e-82a4-66dd67550c83" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13882" + ], + "x-ms-correlation-request-id": [ + "8b715493-37e6-4f47-91c0-ec3a5b9a80f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185427Z:8b715493-37e6-4f47-91c0-ec3a5b9a80f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e68b9a09-dbff-4d52-a7d7-62071fe55b99" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13881" + ], + "x-ms-correlation-request-id": [ + "ff192400-67f6-4ca1-a567-ba5fa4f9f221" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185427Z:ff192400-67f6-4ca1-a567-ba5fa4f9f221" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cfc8b564-36f4-409a-ab62-dbb6747036aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13880" + ], + "x-ms-correlation-request-id": [ + "a4706632-54be-421d-99d4-3ee334dfee68" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185427Z:a4706632-54be-421d-99d4-3ee334dfee68" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2ad9ac9b-f7f2-4604-8679-d62d184debe1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13879" + ], + "x-ms-correlation-request-id": [ + "86abd42f-9539-476e-bda4-45e8e7e4e77d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185428Z:86abd42f-9539-476e-bda4-45e8e7e4e77d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "16a9d13e-4da1-4a01-ad09-e1df37b2dd3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13878" + ], + "x-ms-correlation-request-id": [ + "6803e7e9-b639-4c8e-9bb0-cb0aaf455521" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185428Z:6803e7e9-b639-4c8e-9bb0-cb0aaf455521" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fe67f865-a486-41f0-a380-7dba7016a1a1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13877" + ], + "x-ms-correlation-request-id": [ + "6f2aa6f6-04cc-4cbf-bb6e-c3d6c247285c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185428Z:6f2aa6f6-04cc-4cbf-bb6e-c3d6c247285c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "09cadd4f-6e10-4ab5-af95-9913503127a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13876" + ], + "x-ms-correlation-request-id": [ + "b9dc12f5-8828-4d4c-9811-e3958fe5f2af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185428Z:b9dc12f5-8828-4d4c-9811-e3958fe5f2af" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4f67d251-746f-44dd-86b4-4bb316004229" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13875" + ], + "x-ms-correlation-request-id": [ + "ce5732ae-2d50-4d15-b8e1-249a45e7ff5f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185429Z:ce5732ae-2d50-4d15-b8e1-249a45e7ff5f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d6ee5b4b-3c92-4b10-97c7-d56af4ae11b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13874" + ], + "x-ms-correlation-request-id": [ + "43f34082-13f4-4732-8495-32964d1956d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185429Z:43f34082-13f4-4732-8495-32964d1956d8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6a6f715f-ce3e-4c65-898b-71fd99667697" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13873" + ], + "x-ms-correlation-request-id": [ + "d5dda9ba-97fa-4095-befb-d47b91d94783" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185429Z:d5dda9ba-97fa-4095-befb-d47b91d94783" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ac94efe1-5be3-4d8a-b147-f9eefdbb8dd4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13872" + ], + "x-ms-correlation-request-id": [ + "fe5acd6a-7156-44fe-bc3c-b0625c5707bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185429Z:fe5acd6a-7156-44fe-bc3c-b0625c5707bd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5b60bbc0-6473-4a3a-b56c-2068839d3d33" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13871" + ], + "x-ms-correlation-request-id": [ + "abdef08f-7bfc-4ea0-8353-5d6bb4ba3746" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185429Z:abdef08f-7bfc-4ea0-8353-5d6bb4ba3746" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b0d5f757-22e3-4242-85be-7fa5b6443f3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13870" + ], + "x-ms-correlation-request-id": [ + "48918f85-4c87-421d-bbfe-9bbf2a5e5e72" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185430Z:48918f85-4c87-421d-bbfe-9bbf2a5e5e72" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5528fed-1235-4989-81cb-c609251fe83a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13869" + ], + "x-ms-correlation-request-id": [ + "101046bb-8925-4183-94e3-e4185be77e8c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185430Z:101046bb-8925-4183-94e3-e4185be77e8c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "306a89a6-1fa1-49f1-bfde-01c985e3a5d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13868" + ], + "x-ms-correlation-request-id": [ + "831fe403-bac4-4da1-aa28-b1148865b81c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185430Z:831fe403-bac4-4da1-aa28-b1148865b81c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4ab1da7c-547a-4c0f-a426-420d6d1fa892" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13867" + ], + "x-ms-correlation-request-id": [ + "57ae1cc9-b1f7-48ee-82c0-3970946e8754" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185430Z:57ae1cc9-b1f7-48ee-82c0-3970946e8754" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "230efaaf-cbd8-4b56-8548-e10c7359f322" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13866" + ], + "x-ms-correlation-request-id": [ + "9de0e04e-8573-4be8-870c-f83c213720d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185431Z:9de0e04e-8573-4be8-870c-f83c213720d8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9511be91-c43c-4677-b773-5a24dcdc9dc2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13865" + ], + "x-ms-correlation-request-id": [ + "99b1ca11-b564-4f04-99fb-b2a12435938a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185431Z:99b1ca11-b564-4f04-99fb-b2a12435938a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "400ca11a-efa0-49d8-9833-4a4720c9c43a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13864" + ], + "x-ms-correlation-request-id": [ + "e86d0356-590f-40d0-b628-860141ba0143" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185431Z:e86d0356-590f-40d0-b628-860141ba0143" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e6dbd03-d0d3-4463-9959-9c699c6980d5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13863" + ], + "x-ms-correlation-request-id": [ + "241d3d69-900c-4445-aba3-be55103165cb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185431Z:241d3d69-900c-4445-aba3-be55103165cb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "84cf393c-248f-405d-9a7b-ba19a3a2c2b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13862" + ], + "x-ms-correlation-request-id": [ + "46f09caf-de4e-42a3-aca2-258b58aaf1c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185431Z:46f09caf-de4e-42a3-aca2-258b58aaf1c3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "667fc01a-8219-445f-b604-c6fb5abebada" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13861" + ], + "x-ms-correlation-request-id": [ + "019b64a1-e468-4a00-9e71-22ebd1e52c18" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185432Z:019b64a1-e468-4a00-9e71-22ebd1e52c18" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cc3e13b8-56d9-4208-b880-8b5f91161bb3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13860" + ], + "x-ms-correlation-request-id": [ + "e47a1135-16ce-4e51-9b21-fdd0103667cb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185432Z:e47a1135-16ce-4e51-9b21-fdd0103667cb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b88f06d1-f1fc-4eda-a690-d51c44b923ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13859" + ], + "x-ms-correlation-request-id": [ + "43b68aaf-e79c-4753-80a5-d3b66eb7d536" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185432Z:43b68aaf-e79c-4753-80a5-d3b66eb7d536" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce201aba-aa89-48f2-bfc8-5f4762613172" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13858" + ], + "x-ms-correlation-request-id": [ + "961f271a-bf91-4d69-843e-14d75ee036ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185432Z:961f271a-bf91-4d69-843e-14d75ee036ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d91fe629-59b8-4aa4-b25c-37330db2da70" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13857" + ], + "x-ms-correlation-request-id": [ + "8bf4c4cd-d51c-4bd8-b4c1-41377084f369" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185432Z:8bf4c4cd-d51c-4bd8-b4c1-41377084f369" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a87aed11-5ed6-4816-aa97-2b8f7a03bf33" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13856" + ], + "x-ms-correlation-request-id": [ + "fa6fef08-955c-46cd-8257-8971999186e9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185433Z:fa6fef08-955c-46cd-8257-8971999186e9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8893d437-679f-4f89-9dc2-901bff21fa9e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13855" + ], + "x-ms-correlation-request-id": [ + "9cc438a5-f36e-4b79-a354-1a419aeeaf7a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185433Z:9cc438a5-f36e-4b79-a354-1a419aeeaf7a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e3442c7f-14c3-4278-a6fd-a779553b64e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13854" + ], + "x-ms-correlation-request-id": [ + "54e6f4f5-4b46-4d94-9653-499a75c7ce2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185433Z:54e6f4f5-4b46-4d94-9653-499a75c7ce2f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d0341c81-2ee9-48fb-8e68-b577e6fddd57" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13853" + ], + "x-ms-correlation-request-id": [ + "38b2cf85-97a5-4858-8cfd-0dc691bc2a82" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185433Z:38b2cf85-97a5-4858-8cfd-0dc691bc2a82" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "807d4cf6-4eb8-4708-b382-2d541038513e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13852" + ], + "x-ms-correlation-request-id": [ + "214830c3-b05a-4fad-bd28-5a8ff33b9c94" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185434Z:214830c3-b05a-4fad-bd28-5a8ff33b9c94" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ad47d1c-bf01-48a3-b820-da35ec528258?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhZDQ3ZDFjLWJmMDEtNDhhMy1iODIwLWRhMzVlYzUyODI1OD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:50:15.1743568+01:00\",\r\n \"endTime\": \"2017-11-06T19:54:34.4549799+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ad47d1c-bf01-48a3-b820-da35ec528258\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "848043b8-f359-4598-bc30-8a64138ebc16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13851" + ], + "x-ms-correlation-request-id": [ + "4474062b-395e-4cae-be02-ad3b01c6eb1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185434Z:4474062b-395e-4cae-be02-ad3b01c6eb1c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "84a11e20-b4dc-40d7-ae94-c5d53419ed01" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13850" + ], + "x-ms-correlation-request-id": [ + "e6cdb1c0-4ed4-43d7-95a4-0072aa9347ed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185434Z:e6cdb1c0-4ed4-43d7-95a4-0072aa9347ed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "900eb365-dbe0-41f7-abb1-7bda5209623d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b819bc94-bdfb-4a99-b870-cde4f96326f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13849" + ], + "x-ms-correlation-request-id": [ + "b8765cde-5718-4ab7-91f8-84bba19e82b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185435Z:b8765cde-5718-4ab7-91f8-84bba19e82b9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a238036d-6c01-437e-a1ba-f45e3d2418c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0ea11178-6bf4-435b-ad6a-89785117170c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13848" + ], + "x-ms-correlation-request-id": [ + "f7976f55-2e08-481c-a8d9-8904015fb6a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185435Z:f7976f55-2e08-481c-a8d9-8904015fb6a7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf99efc6-2155-4d70-9996-ce5cc9abbabe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13684" + ], + "x-ms-correlation-request-id": [ + "8799b42d-aab5-46e4-9da4-53cd7570091d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185514Z:8799b42d-aab5-46e4-9da4-53cd7570091d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab163584-e203-4065-873f-b68ae3f95818" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "10e66f31-2d61-4f23-bb06-8c22433ab673" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13683" + ], + "x-ms-correlation-request-id": [ + "6d41e888-376f-42d5-a3de-4ccb3e04f0df" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185515Z:6d41e888-376f-42d5-a3de-4ccb3e04f0df" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe2ed64f-a0a7-4da6-ad38-9ed7cdc595e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f6d4e8b4-d1af-4835-9f69-74acb84ab5e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13682" + ], + "x-ms-correlation-request-id": [ + "6fa97af1-54a0-42cf-a187-3c460ecd49cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185515Z:6fa97af1-54a0-42cf-a187-3c460ecd49cc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a41ab568-fe5f-40a6-bdcc-c972f8af5a58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "16e84836-bf89-4c4d-8ee6-19f323ac1ea2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13680" + ], + "x-ms-correlation-request-id": [ + "b5a54c20-ba6f-4408-98ad-846ed87da440" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185536Z:b5a54c20-ba6f-4408-98ad-846ed87da440" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e821500c-f936-4c7c-830c-0e97d2574b5a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cf6d5f34-3af6-4726-865e-b43670ea5998" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13558" + ], + "x-ms-correlation-request-id": [ + "b2b60d75-c5b1-4e73-a3d3-8486435e306d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185607Z:b2b60d75-c5b1-4e73-a3d3-8486435e306d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df868f76-9e6b-460d-9048-123e80329cb0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "021a99cd-c439-49cd-920a-5c849571fb08" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13556" + ], + "x-ms-correlation-request-id": [ + "d945c0c8-7772-4d7a-b7ae-236072ddbe3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185608Z:d945c0c8-7772-4d7a-b7ae-236072ddbe3b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b021ef0-cb38-4dae-8ee5-2d8981dc9704" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eafd7f58-6a63-4faa-a191-f53c21f730ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13550" + ], + "x-ms-correlation-request-id": [ + "62e328b6-c5d4-4b8f-824f-723a2df8bebb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185609Z:62e328b6-c5d4-4b8f-824f-723a2df8bebb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb5d3086-44ef-44b3-b295-94055676703a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3de60527-ce8c-45fc-9d7b-61e8b095d7a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13403" + ], + "x-ms-correlation-request-id": [ + "f2fd63f4-b361-4a88-96b8-e60119b80b94" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185643Z:f2fd63f4-b361-4a88-96b8-e60119b80b94" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "721241b6-ec6e-41b3-9308-7026c438e1ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13847" + ], + "x-ms-correlation-request-id": [ + "864f023f-d082-4952-a4c1-6b8024a07d5a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185438Z:864f023f-d082-4952-a4c1-6b8024a07d5a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1c709110-dc12-4f8e-a696-1f830bab7047" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13846" + ], + "x-ms-correlation-request-id": [ + "fe846e88-0ae9-47a1-8e5d-a44bdfdcd423" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185439Z:fe846e88-0ae9-47a1-8e5d-a44bdfdcd423" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3dba281f-3af6-4489-ad7c-0fbdcb068acf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13845" + ], + "x-ms-correlation-request-id": [ + "5dd3e520-d090-4029-bd3c-014c04c6be04" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185439Z:5dd3e520-d090-4029-bd3c-014c04c6be04" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a1351237-9fe4-4f2c-827c-1d82577cedd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13844" + ], + "x-ms-correlation-request-id": [ + "b5e1639f-a721-4e69-a6be-18596a23f608" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185439Z:b5e1639f-a721-4e69-a6be-18596a23f608" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c65accba-a2a6-442e-b04b-1b81e138b924" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13843" + ], + "x-ms-correlation-request-id": [ + "6ecd118f-48d6-44ea-9134-b39351d1dd7a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185439Z:6ecd118f-48d6-44ea-9134-b39351d1dd7a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2dc8e970-e37e-4a32-a0c6-756325a84b28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13842" + ], + "x-ms-correlation-request-id": [ + "ec45679b-7c6b-4882-9375-e2668a6ec6d3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185439Z:ec45679b-7c6b-4882-9375-e2668a6ec6d3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9c6f49b9-2859-4e26-9aa2-95ec6cd0120b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13841" + ], + "x-ms-correlation-request-id": [ + "c2efff84-9d3f-4b84-a5fb-bd9baae84e5b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185440Z:c2efff84-9d3f-4b84-a5fb-bd9baae84e5b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ad1138ca-7d10-4c2a-bf64-9ec6ccc47f04" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13840" + ], + "x-ms-correlation-request-id": [ + "a0156eff-d8d4-41c0-8914-4a7c498bd213" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185440Z:a0156eff-d8d4-41c0-8914-4a7c498bd213" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2759207e-0a14-452c-841e-4e6f12194b0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13839" + ], + "x-ms-correlation-request-id": [ + "c04ce4ca-7528-42b4-8444-90d266dfd72c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185440Z:c04ce4ca-7528-42b4-8444-90d266dfd72c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3a9060d7-bf5d-427e-9e58-0126ebd0de66" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13838" + ], + "x-ms-correlation-request-id": [ + "6eb1c285-0a3c-4f79-a7f1-9a1835ccc66a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185440Z:6eb1c285-0a3c-4f79-a7f1-9a1835ccc66a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "316f4974-7faf-48d1-a9f2-6d5de0eea671" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13837" + ], + "x-ms-correlation-request-id": [ + "c13e5b5c-c7e1-410e-928b-5697d24e0d28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185441Z:c13e5b5c-c7e1-410e-928b-5697d24e0d28" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "00c8448a-91a1-4764-a98c-d114ab5b915a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13836" + ], + "x-ms-correlation-request-id": [ + "632bdd10-8668-4e97-95c6-b105926eb211" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185441Z:632bdd10-8668-4e97-95c6-b105926eb211" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d94e9ce1-e718-40b4-84e1-58df14d700c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13835" + ], + "x-ms-correlation-request-id": [ + "644d1be6-4b2f-4287-8683-5d17b56391c4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185441Z:644d1be6-4b2f-4287-8683-5d17b56391c4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d6895f5c-5b2c-4c67-bac1-d1b104bbc772" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13834" + ], + "x-ms-correlation-request-id": [ + "437bc981-3c08-4fe8-a630-593649c5e7d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185441Z:437bc981-3c08-4fe8-a630-593649c5e7d2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "74dae910-b6ac-4451-acaa-8031c67dc4e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13833" + ], + "x-ms-correlation-request-id": [ + "7b6536e0-283f-4ddb-8bb1-ad2806515978" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185441Z:7b6536e0-283f-4ddb-8bb1-ad2806515978" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8cee4738-c585-4144-ad32-9024fb57b6c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13832" + ], + "x-ms-correlation-request-id": [ + "11c77b92-1526-4a08-aa0f-4c56485c9dcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185442Z:11c77b92-1526-4a08-aa0f-4c56485c9dcc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "78c53d5a-6a5f-4721-98af-050ad5ff51fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13831" + ], + "x-ms-correlation-request-id": [ + "c62bc423-db4a-4007-8c36-f7b35e372cad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185442Z:c62bc423-db4a-4007-8c36-f7b35e372cad" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0666513e-c62a-4e9b-8804-2532b9978631" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13830" + ], + "x-ms-correlation-request-id": [ + "7d913a74-36e6-4025-abdc-b94f119e19a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185442Z:7d913a74-36e6-4025-abdc-b94f119e19a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c110ebba-583e-4be2-a511-2a03614510d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13829" + ], + "x-ms-correlation-request-id": [ + "1a8dbd81-fd5a-4d49-924c-3c6e4bb24c4f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185442Z:1a8dbd81-fd5a-4d49-924c-3c6e4bb24c4f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c4ae2fa8-80ef-494e-9c92-6815a9606834" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13828" + ], + "x-ms-correlation-request-id": [ + "cfd98346-28fb-4856-9f5e-e995decfd0c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185442Z:cfd98346-28fb-4856-9f5e-e995decfd0c1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bc65a909-b2ce-4121-96a8-d1337881b8fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13827" + ], + "x-ms-correlation-request-id": [ + "0f62321a-4ef9-416b-b567-e8d892924aeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185443Z:0f62321a-4ef9-416b-b567-e8d892924aeb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d9d16a94-c18e-40a3-b96b-8575872c4c09" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13826" + ], + "x-ms-correlation-request-id": [ + "a42643ea-df46-45eb-9506-287b37273bd0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185443Z:a42643ea-df46-45eb-9506-287b37273bd0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "713cd07c-c971-4fbb-a930-c0d071657ffa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13825" + ], + "x-ms-correlation-request-id": [ + "d9a8a54d-249e-4c0f-b53b-229dfc51d365" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185443Z:d9a8a54d-249e-4c0f-b53b-229dfc51d365" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "806a1e26-8699-466f-8c84-c90c9f923060" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13824" + ], + "x-ms-correlation-request-id": [ + "e9c97b08-caba-4eb3-b1f9-157e9d72379c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185443Z:e9c97b08-caba-4eb3-b1f9-157e9d72379c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c765a6c2-0ee4-458c-91cf-5bb49f71a93c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13823" + ], + "x-ms-correlation-request-id": [ + "28b92139-3d41-48df-a5ad-491cf827d61b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185444Z:28b92139-3d41-48df-a5ad-491cf827d61b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d48c119a-d9ae-4c83-bfcb-ea8914a2ce0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13822" + ], + "x-ms-correlation-request-id": [ + "1dfb305b-724f-449e-babd-01c111f02dd3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185444Z:1dfb305b-724f-449e-babd-01c111f02dd3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9215b78f-3af5-42d1-9f3e-eec56d0484cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13821" + ], + "x-ms-correlation-request-id": [ + "c3d8b878-b843-4d47-b042-60f88af3372d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185444Z:c3d8b878-b843-4d47-b042-60f88af3372d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "68a393f1-337c-4247-8856-f7e1bf002f07" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13820" + ], + "x-ms-correlation-request-id": [ + "cabe03ed-4f29-4ba8-b96f-c06347edc7eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185444Z:cabe03ed-4f29-4ba8-b96f-c06347edc7eb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e18feb0-af67-4fb0-b140-5bd1186cd74f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13819" + ], + "x-ms-correlation-request-id": [ + "e134b360-2c63-451d-959f-43e5cfbb702c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185444Z:e134b360-2c63-451d-959f-43e5cfbb702c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d2daca15-e213-4b23-9896-ef003a0ce0e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13818" + ], + "x-ms-correlation-request-id": [ + "1d504ead-9615-4787-aa59-e24cded7d674" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185445Z:1d504ead-9615-4787-aa59-e24cded7d674" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c09c4f55-dcba-4d62-8ea0-9123b75528b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13817" + ], + "x-ms-correlation-request-id": [ + "8b495495-013d-4596-8eb6-0e10beba3de3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185445Z:8b495495-013d-4596-8eb6-0e10beba3de3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f3fcd8dc-1101-4b21-88db-7e261930c4a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13816" + ], + "x-ms-correlation-request-id": [ + "d3978fad-3e1f-4a62-b2ec-bced17787aa7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185445Z:d3978fad-3e1f-4a62-b2ec-bced17787aa7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1dcdf023-501b-4382-ae7d-b547d5fefcb1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13815" + ], + "x-ms-correlation-request-id": [ + "2c1c1b8f-c5bd-4d2a-a0ac-e7a5ff842d78" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185445Z:2c1c1b8f-c5bd-4d2a-a0ac-e7a5ff842d78" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "be207191-1bbe-46b6-a0ea-60ecc64179e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13814" + ], + "x-ms-correlation-request-id": [ + "eb53a391-26c2-42f3-97a7-83fa3137d684" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185446Z:eb53a391-26c2-42f3-97a7-83fa3137d684" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7941a1a5-0989-4781-b850-a9589403233f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13813" + ], + "x-ms-correlation-request-id": [ + "336da6c9-0318-4e7d-b59e-b9e1fd708d30" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185446Z:336da6c9-0318-4e7d-b59e-b9e1fd708d30" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8b1dd494-18ae-432b-9f95-b26408e2ce5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13812" + ], + "x-ms-correlation-request-id": [ + "5ecaae0d-3391-45c2-beed-321df2d07851" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185446Z:5ecaae0d-3391-45c2-beed-321df2d07851" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c36679c2-4b3f-424d-876d-25ce29747d40" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13811" + ], + "x-ms-correlation-request-id": [ + "f3c61b48-bec2-4a93-91aa-4080b2432d90" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185446Z:f3c61b48-bec2-4a93-91aa-4080b2432d90" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a657f46-fa79-42bd-b67b-8ab574b5800a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13810" + ], + "x-ms-correlation-request-id": [ + "3f144af4-6b33-4268-bb99-873c82bdcbcf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185446Z:3f144af4-6b33-4268-bb99-873c82bdcbcf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "31c24e8a-da5f-49ef-bdfc-29f0dfde1f41" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13809" + ], + "x-ms-correlation-request-id": [ + "da3323fa-5cef-4f7c-85ed-2dad28552061" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185447Z:da3323fa-5cef-4f7c-85ed-2dad28552061" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e9a4c0f8-50e7-4c0d-a304-86225da95867" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13808" + ], + "x-ms-correlation-request-id": [ + "72e009b0-eed5-4b5d-a61d-407c9d174793" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185447Z:72e009b0-eed5-4b5d-a61d-407c9d174793" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9a48ee5b-f433-4dbd-a7d6-d1a2fc70a623" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13807" + ], + "x-ms-correlation-request-id": [ + "ca1351d6-db93-4c7d-a581-b489d415d7ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185447Z:ca1351d6-db93-4c7d-a581-b489d415d7ac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a7282e46-91ee-4b4b-b750-6ecc4ed4fc92" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13806" + ], + "x-ms-correlation-request-id": [ + "6cbacda6-6f86-46f6-82d8-4e7c26aeead0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185447Z:6cbacda6-6f86-46f6-82d8-4e7c26aeead0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6c7b47f5-534a-47fb-88ed-de19df5a4430" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13805" + ], + "x-ms-correlation-request-id": [ + "1ba3599a-9f76-49ec-bdee-7f8329e958f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185448Z:1ba3599a-9f76-49ec-bdee-7f8329e958f1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2a6aeac1-cd53-4734-9aee-876234056616" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13804" + ], + "x-ms-correlation-request-id": [ + "2c6e8de0-6765-42bb-922d-6c8103360efc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185448Z:2c6e8de0-6765-42bb-922d-6c8103360efc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5190136f-d97a-401c-a095-cb7c5899db91" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13803" + ], + "x-ms-correlation-request-id": [ + "a6fb33ef-432f-4602-966d-5ac57a77ece9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185448Z:a6fb33ef-432f-4602-966d-5ac57a77ece9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0bd5028f-e45d-42d0-ae4d-9b7c1762e6fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13802" + ], + "x-ms-correlation-request-id": [ + "492b9992-017d-4d4f-b828-8e3e8a5cd5ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185448Z:492b9992-017d-4d4f-b828-8e3e8a5cd5ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "085aad2a-564f-41b8-9f04-dcce522e15a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13801" + ], + "x-ms-correlation-request-id": [ + "905e016b-07c9-44f4-9da3-cd2476aba14e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185448Z:905e016b-07c9-44f4-9da3-cd2476aba14e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "531fef4b-271a-4cf5-8b57-1e884f23e5cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13800" + ], + "x-ms-correlation-request-id": [ + "956c6b48-3e85-4b75-b229-2e7682d03b17" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185449Z:956c6b48-3e85-4b75-b229-2e7682d03b17" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c8a7aaf-8687-427e-9b1c-446ca90e7efb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13799" + ], + "x-ms-correlation-request-id": [ + "63ade740-f3f2-491f-b9e0-2b424c9fced2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185449Z:63ade740-f3f2-491f-b9e0-2b424c9fced2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e6c8cb1a-2c49-4889-9eb6-73b68dafcc67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13798" + ], + "x-ms-correlation-request-id": [ + "77c09d9f-6d38-4ae0-8e20-15cac268d6a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185449Z:77c09d9f-6d38-4ae0-8e20-15cac268d6a3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "77060fa3-4f92-4f35-9fc2-427b1569f1a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13797" + ], + "x-ms-correlation-request-id": [ + "d8b739aa-8e0e-4f36-ba54-ca34b3e8b67d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185449Z:d8b739aa-8e0e-4f36-ba54-ca34b3e8b67d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "36efc4a1-f432-4156-90e8-6b71f41190d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13796" + ], + "x-ms-correlation-request-id": [ + "a099be3e-120e-416f-b94d-688121ad3970" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185450Z:a099be3e-120e-416f-b94d-688121ad3970" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1fc10403-f7c6-43ef-88e1-cda62d6d2989" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13795" + ], + "x-ms-correlation-request-id": [ + "cdd43140-3b4e-4523-8556-c2b5e7c20b31" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185450Z:cdd43140-3b4e-4523-8556-c2b5e7c20b31" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "99e22560-dcfd-40d3-9da1-65eef9d2c738" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13794" + ], + "x-ms-correlation-request-id": [ + "197146c7-4d1b-47b8-aa7a-79149fb7f01b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185450Z:197146c7-4d1b-47b8-aa7a-79149fb7f01b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "78e796f5-605d-4ed7-bb16-a5800ebdea3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13793" + ], + "x-ms-correlation-request-id": [ + "f07eea94-4b4a-4733-8ca0-7e56de0dba6c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185450Z:f07eea94-4b4a-4733-8ca0-7e56de0dba6c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c24a1829-c150-4b9c-9020-2a251cc25389" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13792" + ], + "x-ms-correlation-request-id": [ + "ecc68940-eb08-44d9-bf8d-f7914372def3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185450Z:ecc68940-eb08-44d9-bf8d-f7914372def3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d1968b2-8190-4916-8368-da127cc90bb5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13791" + ], + "x-ms-correlation-request-id": [ + "18cbb0fc-59c5-442c-a167-8f6a2a31e51c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185451Z:18cbb0fc-59c5-442c-a167-8f6a2a31e51c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1dc55668-c6ac-4bf3-809a-3720c839509b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13790" + ], + "x-ms-correlation-request-id": [ + "77de453a-cc97-4db9-a849-065b57351472" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185451Z:77de453a-cc97-4db9-a849-065b57351472" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b895a8b1-d45b-4595-97ab-4376e2639f07" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13789" + ], + "x-ms-correlation-request-id": [ + "fe520cf7-f869-43fc-8208-282cb126e26a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185451Z:fe520cf7-f869-43fc-8208-282cb126e26a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e8c4c0d6-2624-4243-951f-1fb7494c883d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13788" + ], + "x-ms-correlation-request-id": [ + "e60a19d8-9fb2-4dca-a9b5-64a3da969b14" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185451Z:e60a19d8-9fb2-4dca-a9b5-64a3da969b14" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7b9ed1d7-daa6-4864-aa29-aa53768ab24e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13787" + ], + "x-ms-correlation-request-id": [ + "783b2a2d-4f6b-4fee-866f-9dc4053e5bd8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185452Z:783b2a2d-4f6b-4fee-866f-9dc4053e5bd8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fd1fee52-07cd-4dd3-b897-59ce6a84dc0b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13786" + ], + "x-ms-correlation-request-id": [ + "20bbac0d-920c-433d-9b3d-f80277a098f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185452Z:20bbac0d-920c-433d-9b3d-f80277a098f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3db22905-2ba2-4cea-9367-372aa6fe7630" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13785" + ], + "x-ms-correlation-request-id": [ + "77c727de-05da-4eb7-a8b1-f93470d852e0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185452Z:77c727de-05da-4eb7-a8b1-f93470d852e0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "77fbc4f7-78ab-4825-b415-ad86206e89fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13784" + ], + "x-ms-correlation-request-id": [ + "97411875-4793-435e-9c5b-057e538c2bba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185452Z:97411875-4793-435e-9c5b-057e538c2bba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f86f4218-f051-46af-993c-7d33d4ff941f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13783" + ], + "x-ms-correlation-request-id": [ + "12f35f23-57a4-472f-9f57-227c2a79d084" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185452Z:12f35f23-57a4-472f-9f57-227c2a79d084" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1fd37dab-e6a6-40f3-aa6b-a9d5388ed476" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13782" + ], + "x-ms-correlation-request-id": [ + "b9ee8b1f-018a-481a-a13a-23acae25e2a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185453Z:b9ee8b1f-018a-481a-a13a-23acae25e2a8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bf0204de-9c0a-40b7-bff6-814791453fbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13781" + ], + "x-ms-correlation-request-id": [ + "71534b45-2e13-42c0-8164-cce7d2ab21a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185453Z:71534b45-2e13-42c0-8164-cce7d2ab21a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "60ccbac1-137f-43b8-b5cc-a3d1a2a43783" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13780" + ], + "x-ms-correlation-request-id": [ + "3e19fb49-13ab-4bfa-a025-b8117dd29369" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185453Z:3e19fb49-13ab-4bfa-a025-b8117dd29369" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "87e379a3-1c00-4813-8d68-7dda6808ad82" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13779" + ], + "x-ms-correlation-request-id": [ + "61ee0b95-d726-4e9c-bad8-3f3f09845da0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185453Z:61ee0b95-d726-4e9c-bad8-3f3f09845da0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0a5d920d-d62d-4a82-9fb3-902ee88123e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13778" + ], + "x-ms-correlation-request-id": [ + "ba605e08-53f0-4353-b7c0-0214342266ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185454Z:ba605e08-53f0-4353-b7c0-0214342266ee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5211ef57-fbae-4145-8342-492fe0b8828e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13777" + ], + "x-ms-correlation-request-id": [ + "aaba6518-4ac7-4224-84fa-20af3e6c2bbe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185454Z:aaba6518-4ac7-4224-84fa-20af3e6c2bbe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "304c6db9-f686-4f1e-9689-9d93b7fd77be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13776" + ], + "x-ms-correlation-request-id": [ + "891fa5e6-a488-400c-9acf-d295c28e10f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185454Z:891fa5e6-a488-400c-9acf-d295c28e10f0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25cebbd8-eac3-4fbe-97b3-6a184ed8853e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13775" + ], + "x-ms-correlation-request-id": [ + "ee435a92-eca5-4eaa-b4d5-d3892e8401e9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185454Z:ee435a92-eca5-4eaa-b4d5-d3892e8401e9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "511cfdb6-aa6e-4402-925e-08a2172de0a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13774" + ], + "x-ms-correlation-request-id": [ + "52d85468-d992-462d-80a5-82e3bc8e3553" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185454Z:52d85468-d992-462d-80a5-82e3bc8e3553" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "26f34bfd-81a0-4dd3-b7fb-d34417864c29" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13773" + ], + "x-ms-correlation-request-id": [ + "9fa409ea-c53c-48fe-99fc-f146a29574cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185455Z:9fa409ea-c53c-48fe-99fc-f146a29574cc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f0090312-5163-46c4-bb33-0bcc1ebc1f90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13772" + ], + "x-ms-correlation-request-id": [ + "2a4d6571-8546-44d1-9008-3a382446a41d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185455Z:2a4d6571-8546-44d1-9008-3a382446a41d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "af1e499e-5477-476f-96c9-61fee54d3a32" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13771" + ], + "x-ms-correlation-request-id": [ + "5b3dbf3b-2279-4801-951f-b3a1a2e28c54" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185455Z:5b3dbf3b-2279-4801-951f-b3a1a2e28c54" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1f22d510-afce-407b-9b02-ef98456cda80" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13770" + ], + "x-ms-correlation-request-id": [ + "91eccea5-4d35-42c2-a8ec-83e569aa08a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185455Z:91eccea5-4d35-42c2-a8ec-83e569aa08a5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4739e613-ee7e-4c65-8a94-bc778c4dbc7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13769" + ], + "x-ms-correlation-request-id": [ + "16179990-9a27-4087-89f0-8e9e80b777c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185456Z:16179990-9a27-4087-89f0-8e9e80b777c0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "db68fa7b-21b7-4a38-9ea3-b1d381ba9eed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13768" + ], + "x-ms-correlation-request-id": [ + "5ee8aedd-2a73-4697-906f-66f6c8144230" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185456Z:5ee8aedd-2a73-4697-906f-66f6c8144230" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "43cea6dc-f46b-4001-a400-dbb4db7ad128" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13767" + ], + "x-ms-correlation-request-id": [ + "515804a6-953f-47a0-a137-ac841719e9d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185456Z:515804a6-953f-47a0-a137-ac841719e9d8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "16e0d69d-3078-4503-b105-4f76c4bcda85" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13766" + ], + "x-ms-correlation-request-id": [ + "d3c608c3-5db4-4662-ba46-d1f476a77e6c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185456Z:d3c608c3-5db4-4662-ba46-d1f476a77e6c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3bd8753c-4b12-49aa-aead-923a260f5541" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13765" + ], + "x-ms-correlation-request-id": [ + "8b5df0db-0069-452f-a75c-dd3c664e14c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185457Z:8b5df0db-0069-452f-a75c-dd3c664e14c5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "762d6746-1f95-48dd-b630-0966a646b8b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13764" + ], + "x-ms-correlation-request-id": [ + "2ad7820f-b261-423d-8414-28c69c31e344" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185457Z:2ad7820f-b261-423d-8414-28c69c31e344" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a07d6f6e-c447-493c-bb8a-5eece5654040" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13763" + ], + "x-ms-correlation-request-id": [ + "c1781be2-3149-46f0-88d6-de25cc20452a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185457Z:c1781be2-3149-46f0-88d6-de25cc20452a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6012f91a-dbcb-4dd8-b4cb-9aa4b8dd2bc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13762" + ], + "x-ms-correlation-request-id": [ + "a825b5a2-17de-4135-a5e3-b9a3ca10bb74" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185457Z:a825b5a2-17de-4135-a5e3-b9a3ca10bb74" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3ebf2330-c517-458f-8c80-31aec5d8c7fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13761" + ], + "x-ms-correlation-request-id": [ + "ef2664b3-b210-48b7-8ba8-e087ee55d0f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185457Z:ef2664b3-b210-48b7-8ba8-e087ee55d0f7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "19cff4a8-a0fa-4676-a302-69912ee1920e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13760" + ], + "x-ms-correlation-request-id": [ + "d36969c4-967e-461b-b8a7-d4712b47cc3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185458Z:d36969c4-967e-461b-b8a7-d4712b47cc3b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ddee4638-868b-4716-a2b3-eefb258a7e7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13759" + ], + "x-ms-correlation-request-id": [ + "4d28c603-dce7-4b29-8b08-4eeb64f61896" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185458Z:4d28c603-dce7-4b29-8b08-4eeb64f61896" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "04b5393b-84bb-40d8-93a4-64469feb8955" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13758" + ], + "x-ms-correlation-request-id": [ + "84b2d767-1bc9-46db-86be-0c8fd0fc0191" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185458Z:84b2d767-1bc9-46db-86be-0c8fd0fc0191" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9c04513f-7f07-46b9-be2e-705ed7f35690" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13757" + ], + "x-ms-correlation-request-id": [ + "036419ca-d4b7-43f5-8d4e-65a85c37626a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185458Z:036419ca-d4b7-43f5-8d4e-65a85c37626a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5bd4890d-66a1-4c34-9a9c-b9e2691c2027" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13756" + ], + "x-ms-correlation-request-id": [ + "93a8ba81-7409-4564-ad53-a0e2291d7c19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185459Z:93a8ba81-7409-4564-ad53-a0e2291d7c19" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "87664a15-6bce-456a-ab6f-edca7efed6c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13755" + ], + "x-ms-correlation-request-id": [ + "a5f2449d-2b33-4c57-ad8a-a3f4d66d6294" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185459Z:a5f2449d-2b33-4c57-ad8a-a3f4d66d6294" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b25c25b9-9ec2-4fea-8915-447965601151" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13754" + ], + "x-ms-correlation-request-id": [ + "53a9270e-1506-493a-8ebb-570c7690bf96" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185459Z:53a9270e-1506-493a-8ebb-570c7690bf96" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3d799f09-da7e-4149-9531-6128736a618e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13753" + ], + "x-ms-correlation-request-id": [ + "77862126-a711-4c09-8d0b-190bb7eb7f18" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185459Z:77862126-a711-4c09-8d0b-190bb7eb7f18" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4288f198-1c6e-4855-9b10-537f50537d67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13752" + ], + "x-ms-correlation-request-id": [ + "63704e2a-051e-493c-9e98-3976f426fd6a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185459Z:63704e2a-051e-493c-9e98-3976f426fd6a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1d4b65dd-055c-4373-b686-2f53f65bcb79" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13751" + ], + "x-ms-correlation-request-id": [ + "31ca1687-8236-4182-89fb-543c3d5ec3c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185500Z:31ca1687-8236-4182-89fb-543c3d5ec3c1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1cb7a1f5-70a0-40e8-8c6b-36ef0ca6a5b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13750" + ], + "x-ms-correlation-request-id": [ + "1ae51165-36ac-4b4a-86d3-ba3651bef9b7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185500Z:1ae51165-36ac-4b4a-86d3-ba3651bef9b7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "30aaf52d-411b-4f8b-8dc5-adc93180153c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13749" + ], + "x-ms-correlation-request-id": [ + "e17a109d-7222-4b4f-9c6d-7198f0a7eeec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185500Z:e17a109d-7222-4b4f-9c6d-7198f0a7eeec" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "46dbe4e8-353c-43cf-b6b5-0b9d2ea36c5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13748" + ], + "x-ms-correlation-request-id": [ + "aae2a2ec-1cad-4dd5-ae4e-b9d12fbe4d47" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185500Z:aae2a2ec-1cad-4dd5-ae4e-b9d12fbe4d47" + ], + "Date": [ + "Mon, 06 Nov 2017 18:54:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9384524c-8ce0-4abf-8acc-2f77807a3b5a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13747" + ], + "x-ms-correlation-request-id": [ + "af20f099-df53-4c94-bfb7-cad074d5d784" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185501Z:af20f099-df53-4c94-bfb7-cad074d5d784" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9e28d6ab-db81-465d-928e-e5e2cef5b666" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13746" + ], + "x-ms-correlation-request-id": [ + "905bd2ab-ca7f-4313-b325-6f11bd27659d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185501Z:905bd2ab-ca7f-4313-b325-6f11bd27659d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3fe89159-b392-4fec-9587-99c83dc4c3d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13745" + ], + "x-ms-correlation-request-id": [ + "9cb57e2f-2dd7-4222-8a40-eb5f86c32bed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185501Z:9cb57e2f-2dd7-4222-8a40-eb5f86c32bed" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "425b8f36-9de8-4253-b3d4-eff2fccf138e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13744" + ], + "x-ms-correlation-request-id": [ + "2920313f-e91d-448f-a8ee-b399a7dfab9f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185501Z:2920313f-e91d-448f-a8ee-b399a7dfab9f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "febd8feb-e266-4bce-98fa-5894dcdcbc1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13743" + ], + "x-ms-correlation-request-id": [ + "25302afa-67e2-41e1-bcbe-acb024a6eacd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185501Z:25302afa-67e2-41e1-bcbe-acb024a6eacd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7c11ead7-620a-4240-9a3a-6664f9bb6346" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13742" + ], + "x-ms-correlation-request-id": [ + "65b74d69-c333-4788-8289-8f004fe946fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185502Z:65b74d69-c333-4788-8289-8f004fe946fb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b2f93a73-f4d3-4699-b86d-68101f2d06e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13741" + ], + "x-ms-correlation-request-id": [ + "ea2dd14a-70ec-4392-9681-71eb9b71afcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185502Z:ea2dd14a-70ec-4392-9681-71eb9b71afcd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "de5fdb89-3d8c-47c4-831e-152b8ee9f6c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13740" + ], + "x-ms-correlation-request-id": [ + "862d9d4a-3546-417a-8e27-e605043dc16f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185502Z:862d9d4a-3546-417a-8e27-e605043dc16f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "18967f23-3d99-4525-860a-f6ccf60dfa0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13739" + ], + "x-ms-correlation-request-id": [ + "335319ba-95b3-4e8a-bac6-04e27bf08149" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185502Z:335319ba-95b3-4e8a-bac6-04e27bf08149" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "87cd28e7-de3b-4642-a14a-f27205e0106d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13738" + ], + "x-ms-correlation-request-id": [ + "4b6fb87c-ac8f-4118-b3cd-0da479d9925a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185503Z:4b6fb87c-ac8f-4118-b3cd-0da479d9925a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cab1875e-4731-40ac-b778-bafd0db8eb8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13737" + ], + "x-ms-correlation-request-id": [ + "e781826f-fe63-4fbb-9005-8557f7c7d212" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185503Z:e781826f-fe63-4fbb-9005-8557f7c7d212" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8fc2ccc6-94c9-47f5-80ec-dde68fc85552" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13736" + ], + "x-ms-correlation-request-id": [ + "e29930ce-800f-44a0-9139-5b42915d0019" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185503Z:e29930ce-800f-44a0-9139-5b42915d0019" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "35f69b72-116d-492d-b017-c87a078a6aea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13735" + ], + "x-ms-correlation-request-id": [ + "994c20df-f5bd-4d38-845f-951e28fa970e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185503Z:994c20df-f5bd-4d38-845f-951e28fa970e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "705a8255-5ca3-4ae3-b3cc-3958a28e5b15" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13734" + ], + "x-ms-correlation-request-id": [ + "0f023b56-77a4-4e5b-a3b9-e60a1907e7c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185503Z:0f023b56-77a4-4e5b-a3b9-e60a1907e7c5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "068dc7c0-870f-4a29-b450-9c0f388d8232" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13733" + ], + "x-ms-correlation-request-id": [ + "b92d97be-c5c1-417b-b18f-cff46e11d694" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185504Z:b92d97be-c5c1-417b-b18f-cff46e11d694" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4766eeef-e6e3-4eb5-b3b8-bf77832350fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13732" + ], + "x-ms-correlation-request-id": [ + "156d3208-6237-424d-b880-0624c16ac608" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185504Z:156d3208-6237-424d-b880-0624c16ac608" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6c4f8f95-7d41-4a69-ac92-bea40c344606" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13731" + ], + "x-ms-correlation-request-id": [ + "99328bf9-266d-437e-b5ac-191be87d5e7e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185504Z:99328bf9-266d-437e-b5ac-191be87d5e7e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bab77d93-d62e-4bcf-b9a6-868bdc70665b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13730" + ], + "x-ms-correlation-request-id": [ + "d4a9e328-37c7-4d47-b0c0-d6a5d7b1f768" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185504Z:d4a9e328-37c7-4d47-b0c0-d6a5d7b1f768" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "590a649b-bad2-435a-acd5-c2f54dbc95b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13729" + ], + "x-ms-correlation-request-id": [ + "8c5594fb-0150-4480-bcb8-ebf6d0488278" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185505Z:8c5594fb-0150-4480-bcb8-ebf6d0488278" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d96e87b7-106a-4eab-8830-330d245c3ff0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13728" + ], + "x-ms-correlation-request-id": [ + "84329f8f-38af-4f3c-9ced-2644a4013939" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185505Z:84329f8f-38af-4f3c-9ced-2644a4013939" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ec19853b-4853-4ed9-b310-cb187b7ff8e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13727" + ], + "x-ms-correlation-request-id": [ + "97f752f7-db82-4ccb-9bfd-b1197d3bbb28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185505Z:97f752f7-db82-4ccb-9bfd-b1197d3bbb28" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "35fdbf1c-d216-4df5-a5b1-af2c073dc4c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13726" + ], + "x-ms-correlation-request-id": [ + "f8eb58b5-f05c-4f0c-9366-f7746329e134" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185505Z:f8eb58b5-f05c-4f0c-9366-f7746329e134" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e535aff-1fda-4ae6-84f8-bdf20119b419" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13725" + ], + "x-ms-correlation-request-id": [ + "cd42b7fc-7568-4a2a-8bd6-4fbe99a87746" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185505Z:cd42b7fc-7568-4a2a-8bd6-4fbe99a87746" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ffad9939-f84a-4930-beba-ea0864d24e2a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13724" + ], + "x-ms-correlation-request-id": [ + "11d011cc-be8d-4d35-b94b-aa670caea69f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185506Z:11d011cc-be8d-4d35-b94b-aa670caea69f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f54bbd51-bc73-493d-82a4-10193abe01e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13723" + ], + "x-ms-correlation-request-id": [ + "173deef1-26c8-4269-a74c-7f99a1db46d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185506Z:173deef1-26c8-4269-a74c-7f99a1db46d6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a5dd7202-af0e-45c6-8b23-dc41de694e0b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13722" + ], + "x-ms-correlation-request-id": [ + "23494423-6dba-4807-9b56-1d8af8837345" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185506Z:23494423-6dba-4807-9b56-1d8af8837345" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7a7e65f3-f68b-44ee-8526-192720c5c423" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13721" + ], + "x-ms-correlation-request-id": [ + "2ad0c8a9-3743-44f7-8fa1-138495565139" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185506Z:2ad0c8a9-3743-44f7-8fa1-138495565139" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "73090599-0ad8-418e-be7f-d1b74c9daa76" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13720" + ], + "x-ms-correlation-request-id": [ + "94e4a3a9-ffe1-4742-adde-538354fa8050" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185507Z:94e4a3a9-ffe1-4742-adde-538354fa8050" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "09ba22d5-1932-4d8a-b6e5-2b00af3e1749" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13719" + ], + "x-ms-correlation-request-id": [ + "72d281cd-9126-4905-97c3-fa2c0eb924af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185507Z:72d281cd-9126-4905-97c3-fa2c0eb924af" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "defc958b-6e89-45a9-9a54-bb59052fc72d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13718" + ], + "x-ms-correlation-request-id": [ + "b3162227-7f3d-46a1-8c62-01125c51fec1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185507Z:b3162227-7f3d-46a1-8c62-01125c51fec1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c19e01a2-7949-4c54-9fd4-2742b19dc9b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13717" + ], + "x-ms-correlation-request-id": [ + "5cd2db4a-13bb-4f57-b372-ae552a1bc517" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185507Z:5cd2db4a-13bb-4f57-b372-ae552a1bc517" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "95065db1-9d75-4fce-9267-bbfc3df0ce9a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13716" + ], + "x-ms-correlation-request-id": [ + "91ed02b1-4a4d-4120-a901-a2c19e43586c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185507Z:91ed02b1-4a4d-4120-a901-a2c19e43586c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "446d8f66-9daa-4d9a-9cd5-5051d45db7c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13715" + ], + "x-ms-correlation-request-id": [ + "ef9072f8-834b-457d-8dce-219f94d65bb3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185508Z:ef9072f8-834b-457d-8dce-219f94d65bb3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1961d57b-651f-4801-aa5b-55503eb811ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13714" + ], + "x-ms-correlation-request-id": [ + "2a227376-2a8d-42b4-9471-6bf13cc0dc8b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185508Z:2a227376-2a8d-42b4-9471-6bf13cc0dc8b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "237bf9ba-3365-451c-94f9-5ba1aa5459e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13713" + ], + "x-ms-correlation-request-id": [ + "669d9372-39d2-4dc1-ae97-2f6ed74b6fc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185508Z:669d9372-39d2-4dc1-ae97-2f6ed74b6fc7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a82e540a-542c-458f-8036-48756b9996a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13712" + ], + "x-ms-correlation-request-id": [ + "012c4052-a63a-452d-ab42-758eb438ed5c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185508Z:012c4052-a63a-452d-ab42-758eb438ed5c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "265fae4a-4b8c-453e-8882-a0287a35a659" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13711" + ], + "x-ms-correlation-request-id": [ + "0887a2d6-0ded-4ba7-95f9-ec1226926151" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185509Z:0887a2d6-0ded-4ba7-95f9-ec1226926151" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "654b8097-25a5-4ba5-a58e-d36452cb3905" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13710" + ], + "x-ms-correlation-request-id": [ + "a1af1d71-d411-4ba8-9198-237a6adbe64e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185509Z:a1af1d71-d411-4ba8-9198-237a6adbe64e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "107b7b61-705e-4163-9d74-829cf6e3e49a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13709" + ], + "x-ms-correlation-request-id": [ + "9032994c-f036-4002-ac02-1e920fd93ab6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185509Z:9032994c-f036-4002-ac02-1e920fd93ab6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f085ff3d-c53e-45f9-8514-02b143a7dfc1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13708" + ], + "x-ms-correlation-request-id": [ + "871e63d2-dca1-4f89-bed8-353ee540f7d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185509Z:871e63d2-dca1-4f89-bed8-353ee540f7d2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "58031e47-19da-4a74-9aad-023070eba7ba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13707" + ], + "x-ms-correlation-request-id": [ + "a0fe6911-9fc1-4173-b944-752ed720a91e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185509Z:a0fe6911-9fc1-4173-b944-752ed720a91e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bda221a4-a39c-4e03-81fc-1fc7e850172c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13706" + ], + "x-ms-correlation-request-id": [ + "d39f6a8f-fdee-490e-b761-6e80420068ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185510Z:d39f6a8f-fdee-490e-b761-6e80420068ee" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "829c1798-abef-44d5-9d76-9d9319c85cc6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13705" + ], + "x-ms-correlation-request-id": [ + "e1f9b4f6-c15e-483a-a3db-273bb245e43a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185510Z:e1f9b4f6-c15e-483a-a3db-273bb245e43a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0a75704e-cafd-4ac3-a1c2-62f2b69b4996" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13704" + ], + "x-ms-correlation-request-id": [ + "398f2fc4-8fc8-4048-b988-b12d8bfac949" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185510Z:398f2fc4-8fc8-4048-b988-b12d8bfac949" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b8b69d8c-6404-4938-a3f7-239b2ce58c52" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13703" + ], + "x-ms-correlation-request-id": [ + "a9aa163b-9f52-42aa-93f4-a6e6e4724dac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185510Z:a9aa163b-9f52-42aa-93f4-a6e6e4724dac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3222cca9-63ec-4035-9484-94f51513e3d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13702" + ], + "x-ms-correlation-request-id": [ + "e533861b-7e4d-49bb-ba3a-e650a149c1f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185511Z:e533861b-7e4d-49bb-ba3a-e650a149c1f7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "11721948-56d6-4a70-99e5-f21b16b347af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13701" + ], + "x-ms-correlation-request-id": [ + "44b369ff-160a-48ae-859e-d5534fc11ff3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185511Z:44b369ff-160a-48ae-859e-d5534fc11ff3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5a3e4187-773c-4e77-b28a-82ee29f23a61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13700" + ], + "x-ms-correlation-request-id": [ + "0b92eabd-a180-428d-937d-7d4459ca67f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185511Z:0b92eabd-a180-428d-937d-7d4459ca67f5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f2d2a05e-09b7-436a-ae16-764ddb20a261" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13699" + ], + "x-ms-correlation-request-id": [ + "08865868-00ed-48da-8b9c-112651d1ead9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185511Z:08865868-00ed-48da-8b9c-112651d1ead9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "32eda97c-dbe7-4c51-b61f-f69097aab7e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13698" + ], + "x-ms-correlation-request-id": [ + "1c397864-9f4a-43ff-99c9-d39cdea63134" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185511Z:1c397864-9f4a-43ff-99c9-d39cdea63134" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ef292fd9-6e5c-40da-8637-ec68d616f6f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13697" + ], + "x-ms-correlation-request-id": [ + "7fa36b81-ef12-48f2-a262-1d47ea68f8ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185512Z:7fa36b81-ef12-48f2-a262-1d47ea68f8ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fb3fe8de-a513-4707-8abe-a197739c68fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13696" + ], + "x-ms-correlation-request-id": [ + "e65b5ced-8ae0-4e61-be4c-4d5762a42a78" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185512Z:e65b5ced-8ae0-4e61-be4c-4d5762a42a78" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b438fa6c-2837-4bf8-9b3f-9a063a948b9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13695" + ], + "x-ms-correlation-request-id": [ + "8956e2d4-2259-40c1-b758-e12076b5e437" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185512Z:8956e2d4-2259-40c1-b758-e12076b5e437" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "82b70c86-afda-435a-bf44-78a1a2d0cda2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13694" + ], + "x-ms-correlation-request-id": [ + "4e65ac56-2222-4080-a013-6736659348d6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185512Z:4e65ac56-2222-4080-a013-6736659348d6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "80dae6d2-2091-4ac9-973e-436839e459d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13693" + ], + "x-ms-correlation-request-id": [ + "ef811f8c-c6dc-4804-aa67-13cdbbd1c102" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185512Z:ef811f8c-c6dc-4804-aa67-13cdbbd1c102" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "62658fe3-01f1-460c-8763-175d48e004a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13692" + ], + "x-ms-correlation-request-id": [ + "d5bfabd0-4f8e-432e-a0f8-7fff7e10d3ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185513Z:d5bfabd0-4f8e-432e-a0f8-7fff7e10d3ac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "57381324-185d-40cb-b158-1b18e60d7f68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13691" + ], + "x-ms-correlation-request-id": [ + "2981c87e-c092-4776-b71a-bac66823612d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185513Z:2981c87e-c092-4776-b71a-bac66823612d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4fda0e71-cde1-4db0-80b9-94a4257f5918" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13690" + ], + "x-ms-correlation-request-id": [ + "435a711c-4f60-49c4-a027-880a7442e1fe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185513Z:435a711c-4f60-49c4-a027-880a7442e1fe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "acea8d5e-aca0-4e98-9de0-e328adf63a46" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13689" + ], + "x-ms-correlation-request-id": [ + "85d47ede-9696-4d59-b082-01157bde8f13" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185513Z:85d47ede-9696-4d59-b082-01157bde8f13" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "322e6eea-85b3-438a-a682-f4864afd0e8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13688" + ], + "x-ms-correlation-request-id": [ + "59cf98b2-4e23-4a4d-9177-a42ed51a19e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185514Z:59cf98b2-4e23-4a4d-9177-a42ed51a19e2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "28ca484e-8f0e-42ef-bf77-53e4f4050061" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13687" + ], + "x-ms-correlation-request-id": [ + "c221a3a7-0a27-48a8-ae59-294e92cc7e70" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185514Z:c221a3a7-0a27-48a8-ae59-294e92cc7e70" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "25fa913e-6ef8-4b46-ab35-406fcab57fd1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13686" + ], + "x-ms-correlation-request-id": [ + "32534114-ca3a-4d91-a6a0-5f15cc7045c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185514Z:32534114-ca3a-4d91-a6a0-5f15cc7045c9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/d6ab7cf0-4dda-48ee-8114-2c53e0c18815?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q2YWI3Y2YwLTRkZGEtNDhlZS04MTE0LTJjNTNlMGMxODgxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:54:37.439362+01:00\",\r\n \"endTime\": \"2017-11-06T19:55:14.892369+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d6ab7cf0-4dda-48ee-8114-2c53e0c18815\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bc850910-1b35-4133-8bee-8070a6723739" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13685" + ], + "x-ms-correlation-request-id": [ + "5fb1bf9a-74fa-46cc-836f-d14191ba9f1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185514Z:5fb1bf9a-74fa-46cc-836f-d14191ba9f1c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?$expand=instanceView&api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a621f9d4-cde4-4b0a-b897-105d54432fc7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.13\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-11-06T19:55:13+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:54:38.3299689+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:55:14.8767185+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2271f9ee-0fa6-4c3b-a521-affeac97dd92" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13681" + ], + "x-ms-correlation-request-id": [ + "4e3d3524-3235-4aec-bdd1-9af2efc76b56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185516Z:4e3d3524-3235-4aec-bdd1-9af2efc76b56" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?$expand=instanceView&api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01858b7a-bfe8-4bee-ac18-bceaf6880c03" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.13\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-11-06T19:55:34+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:54:38.3299689+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:55:14.8767185+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5310" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "36607588-cc20-438b-88c5-16ab494ede02" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13679" + ], + "x-ms-correlation-request-id": [ + "d0a7c336-9a61-4894-b226-7f517fe34b8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185536Z:d0a7c336-9a61-4894-b226-7f517fe34b8a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837?$expand=instanceView&api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4Mzc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b76e72df-55cd-4118-a13b-1b3ff5daa64e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"452c6af0-b138-47f2-b6e2-ad1158c18b13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic0crptestps6837\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Network/networkInterfaces/nic1crptestps6837\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.13\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-11-06T19:56:07+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.1.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:50:27.0649533+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:54:38.3299689+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.1.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=978550b7-0ff4-45d2-a54e-a5f85ce3d456 roleInstance=_vmcrptestps6837 OK\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T19:56:07.3610804+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"name\": \"vmcrptestps6837\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "8309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3fddffdf-2e87-439b-82c7-950e8e77319e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13555" + ], + "x-ms-correlation-request-id": [ + "b7f97896-946b-4354-a5ce-2c8dff241ca0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185608Z:b7f97896-946b-4354-a5ce-2c8dff241ca0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Storage/storageAccounts/stocrptestps68372?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2ODM3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], + "x-ms-client-request-id": [ + "a2a388b7-c26a-4f44-9635-fdb161c213af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f4acaa78-4ee9-418d-9757-1517b58e96db" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f4acaa78-4ee9-418d-9757-1517b58e96db" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185519Z:f4acaa78-4ee9-418d-9757-1517b58e96db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "af6ea57a-403d-4610-9686-fecbd21ec180" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "af6ea57a-403d-4610-9686-fecbd21ec180" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185520Z:af6ea57a-403d-4610-9686-fecbd21ec180" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "6edd2951-4bac-4933-ac36-6a79c0a21734" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6edd2951-4bac-4933-ac36-6a79c0a21734" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185520Z:6edd2951-4bac-4933-ac36-6a79c0a21734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "f926132f-0ba4-47b1-b1cc-1d24c6cdac15" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f926132f-0ba4-47b1-b1cc-1d24c6cdac15" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185520Z:f926132f-0ba4-47b1-b1cc-1d24c6cdac15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "67c78dab-970a-4cc9-aac2-9b25c8779729" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "67c78dab-970a-4cc9-aac2-9b25c8779729" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185520Z:67c78dab-970a-4cc9-aac2-9b25c8779729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "0e1556b9-4cb7-486a-b93a-2ade7823a6f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0e1556b9-4cb7-486a-b93a-2ade7823a6f3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185520Z:0e1556b9-4cb7-486a-b93a-2ade7823a6f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "13599dfd-3cd8-4484-8852-f4dece96defb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "13599dfd-3cd8-4484-8852-f4dece96defb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185520Z:13599dfd-3cd8-4484-8852-f4dece96defb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "3ac36c01-45c9-4bb6-b28d-bd2284f124cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3ac36c01-45c9-4bb6-b28d-bd2284f124cf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185521Z:3ac36c01-45c9-4bb6-b28d-bd2284f124cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "ead350a3-40d9-44c5-90ad-c3af1e126af0" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ead350a3-40d9-44c5-90ad-c3af1e126af0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185521Z:ead350a3-40d9-44c5-90ad-c3af1e126af0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "4ea1e620-3563-43f2-a341-d83fde39659c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4ea1e620-3563-43f2-a341-d83fde39659c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185521Z:4ea1e620-3563-43f2-a341-d83fde39659c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "2beefd44-20cc-4727-bb33-c214e0f892c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2beefd44-20cc-4727-bb33-c214e0f892c2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185521Z:2beefd44-20cc-4727-bb33-c214e0f892c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:21 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "36c66e28-6432-466b-a3e0-9bb4ffc76718" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "36c66e28-6432-466b-a3e0-9bb4ffc76718" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185521Z:36c66e28-6432-466b-a3e0-9bb4ffc76718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:21 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "e5b18177-cc0a-4517-92a6-a2f55fa30053" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e5b18177-cc0a-4517-92a6-a2f55fa30053" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185522Z:e5b18177-cc0a-4517-92a6-a2f55fa30053" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:21 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "f92b3bbb-30ce-462d-9ad7-1d9e4fbe6476" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f92b3bbb-30ce-462d-9ad7-1d9e4fbe6476" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185522Z:f92b3bbb-30ce-462d-9ad7-1d9e4fbe6476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:21 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "95da4f82-f5f7-416e-bd6f-418e4606ad98" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "95da4f82-f5f7-416e-bd6f-418e4606ad98" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185522Z:95da4f82-f5f7-416e-bd6f-418e4606ad98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:21 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "6e41ac4f-b5ad-40c8-b9a7-a936d28020a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6e41ac4f-b5ad-40c8-b9a7-a936d28020a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185522Z:6e41ac4f-b5ad-40c8-b9a7-a936d28020a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:21 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "543d7a42-f4ee-4e31-919f-91ddc4be3384" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "543d7a42-f4ee-4e31-919f-91ddc4be3384" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185522Z:543d7a42-f4ee-4e31-919f-91ddc4be3384" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "5103b996-96a9-4d18-9876-f23e0e16ed01" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5103b996-96a9-4d18-9876-f23e0e16ed01" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185522Z:5103b996-96a9-4d18-9876-f23e0e16ed01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "aa5d6b93-2060-4bdb-a85b-76bf9669b4dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "aa5d6b93-2060-4bdb-a85b-76bf9669b4dc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185523Z:aa5d6b93-2060-4bdb-a85b-76bf9669b4dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "99e91a9f-bebd-4213-a3bf-0bf21b1e5da4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "99e91a9f-bebd-4213-a3bf-0bf21b1e5da4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185523Z:99e91a9f-bebd-4213-a3bf-0bf21b1e5da4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "0e6cb372-b7dc-4bd0-86dd-dc8b280e5185" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0e6cb372-b7dc-4bd0-86dd-dc8b280e5185" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185523Z:0e6cb372-b7dc-4bd0-86dd-dc8b280e5185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "eac60df3-16b9-41a5-bc3b-badad9f8be38" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "eac60df3-16b9-41a5-bc3b-badad9f8be38" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185523Z:eac60df3-16b9-41a5-bc3b-badad9f8be38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:23 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "47cefa4d-d9aa-4213-904b-3cd48c628e5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "47cefa4d-d9aa-4213-904b-3cd48c628e5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185523Z:47cefa4d-d9aa-4213-904b-3cd48c628e5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:23 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "9c11cc2d-1a3c-4fa3-9aca-6e57eab90a0c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "9c11cc2d-1a3c-4fa3-9aca-6e57eab90a0c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185524Z:9c11cc2d-1a3c-4fa3-9aca-6e57eab90a0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:23 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "fe9a169a-d4ed-4574-8b04-3ffb5fd86b8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "fe9a169a-d4ed-4574-8b04-3ffb5fd86b8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185524Z:fe9a169a-d4ed-4574-8b04-3ffb5fd86b8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:23 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "4c858429-f6cd-4b88-9b7c-f885c47e8299" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4c858429-f6cd-4b88-9b7c-f885c47e8299" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185524Z:4c858429-f6cd-4b88-9b7c-f885c47e8299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:23 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "2df9438a-49e0-4479-af82-92dbcc3d291c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2df9438a-49e0-4479-af82-92dbcc3d291c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185524Z:2df9438a-49e0-4479-af82-92dbcc3d291c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:23 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "c32161b6-a81c-4d24-99c6-ee62b41270f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c32161b6-a81c-4d24-99c6-ee62b41270f3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185524Z:c32161b6-a81c-4d24-99c6-ee62b41270f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "dae7e47f-4732-486c-a4ea-86a2c8597b1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "dae7e47f-4732-486c-a4ea-86a2c8597b1a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185525Z:dae7e47f-4732-486c-a4ea-86a2c8597b1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "c9e2a44d-b4ef-47f7-8f45-91c0935b89ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c9e2a44d-b4ef-47f7-8f45-91c0935b89ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185525Z:c9e2a44d-b4ef-47f7-8f45-91c0935b89ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "e28af7c4-a002-480c-9d9e-6a82a1f31e56" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e28af7c4-a002-480c-9d9e-6a82a1f31e56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185525Z:e28af7c4-a002-480c-9d9e-6a82a1f31e56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "5296924a-db65-4ed3-b84d-3d0efe4f5195" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5296924a-db65-4ed3-b84d-3d0efe4f5195" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185525Z:5296924a-db65-4ed3-b84d-3d0efe4f5195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:24 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "7506b973-8397-49d5-a143-79a425ed04c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7506b973-8397-49d5-a143-79a425ed04c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185525Z:7506b973-8397-49d5-a143-79a425ed04c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "e7a66712-8034-4ba9-8c38-5d98749fdee7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e7a66712-8034-4ba9-8c38-5d98749fdee7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185526Z:e7a66712-8034-4ba9-8c38-5d98749fdee7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "fb476fb6-24a0-4972-bd8a-fe49fcb17bf7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "fb476fb6-24a0-4972-bd8a-fe49fcb17bf7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185526Z:fb476fb6-24a0-4972-bd8a-fe49fcb17bf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "6e7561d0-fb6e-4fd6-9b9b-c238326da20c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6e7561d0-fb6e-4fd6-9b9b-c238326da20c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185526Z:6e7561d0-fb6e-4fd6-9b9b-c238326da20c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "45dcf68d-e5b4-4fb4-a70f-3a0e19006496" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "45dcf68d-e5b4-4fb4-a70f-3a0e19006496" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185526Z:45dcf68d-e5b4-4fb4-a70f-3a0e19006496" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:25 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "897d8988-9f5c-474d-b25b-3274409b423f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "897d8988-9f5c-474d-b25b-3274409b423f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185526Z:897d8988-9f5c-474d-b25b-3274409b423f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:26 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "c47d02b4-0323-40ea-ad6b-de9db728f349" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c47d02b4-0323-40ea-ad6b-de9db728f349" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185526Z:c47d02b4-0323-40ea-ad6b-de9db728f349" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:26 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "e439ebec-29a4-4987-8c0c-0e5ba5e3c76b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e439ebec-29a4-4987-8c0c-0e5ba5e3c76b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185527Z:e439ebec-29a4-4987-8c0c-0e5ba5e3c76b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:26 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "f6832b83-d736-47ea-a166-08eee753c940" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f6832b83-d736-47ea-a166-08eee753c940" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185527Z:f6832b83-d736-47ea-a166-08eee753c940" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:26 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "5782dbee-7fc6-4e68-8625-5f634f4bb4b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5782dbee-7fc6-4e68-8625-5f634f4bb4b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185527Z:5782dbee-7fc6-4e68-8625-5f634f4bb4b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:26 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c77675f1-d8f5-4a1f-ad5e-234eed401a9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c77675f1-d8f5-4a1f-ad5e-234eed401a9c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185527Z:c77675f1-d8f5-4a1f-ad5e-234eed401a9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "98da7b8f-cc8f-4d9d-b4bf-1b88958c9ec5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "98da7b8f-cc8f-4d9d-b4bf-1b88958c9ec5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185527Z:98da7b8f-cc8f-4d9d-b4bf-1b88958c9ec5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "47c5dada-5425-4a46-b0b6-4a723827f57a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "47c5dada-5425-4a46-b0b6-4a723827f57a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185528Z:47c5dada-5425-4a46-b0b6-4a723827f57a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "ea4839b3-43ac-4441-a3d4-6299d778366d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ea4839b3-43ac-4441-a3d4-6299d778366d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185528Z:ea4839b3-43ac-4441-a3d4-6299d778366d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "7f60c3a4-9be2-47de-b428-3ac3c683390c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7f60c3a4-9be2-47de-b428-3ac3c683390c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185528Z:7f60c3a4-9be2-47de-b428-3ac3c683390c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "14bf02cf-5227-4640-8446-886e1f13c296" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "14bf02cf-5227-4640-8446-886e1f13c296" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185528Z:14bf02cf-5227-4640-8446-886e1f13c296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "a35733e2-b10b-4566-9928-d80746a9d749" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a35733e2-b10b-4566-9928-d80746a9d749" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185528Z:a35733e2-b10b-4566-9928-d80746a9d749" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "011a1e5c-dd35-4a4b-a926-de0dd31b8845" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "011a1e5c-dd35-4a4b-a926-de0dd31b8845" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185529Z:011a1e5c-dd35-4a4b-a926-de0dd31b8845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "c31bde7a-87e5-482a-a5c0-7e64864b8977" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c31bde7a-87e5-482a-a5c0-7e64864b8977" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185529Z:c31bde7a-87e5-482a-a5c0-7e64864b8977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "7e1c7648-6d24-48ba-8d12-a76dbdf38988" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7e1c7648-6d24-48ba-8d12-a76dbdf38988" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185529Z:7e1c7648-6d24-48ba-8d12-a76dbdf38988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "5ec321f0-0aa6-4e26-bbae-823f6ecbf7de" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5ec321f0-0aa6-4e26-bbae-823f6ecbf7de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185529Z:5ec321f0-0aa6-4e26-bbae-823f6ecbf7de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "d982b0c9-f88a-4bf0-86b7-662865c717c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d982b0c9-f88a-4bf0-86b7-662865c717c4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185529Z:d982b0c9-f88a-4bf0-86b7-662865c717c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:29 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "3f59b1f9-0192-4510-a0c0-777700b70c3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3f59b1f9-0192-4510-a0c0-777700b70c3e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185530Z:3f59b1f9-0192-4510-a0c0-777700b70c3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:29 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "afb04cad-c038-4517-b531-39bc5f3f58fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "afb04cad-c038-4517-b531-39bc5f3f58fc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185530Z:afb04cad-c038-4517-b531-39bc5f3f58fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:29 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "b975edf4-fc9d-46bc-b67a-04675d068cbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b975edf4-fc9d-46bc-b67a-04675d068cbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185530Z:b975edf4-fc9d-46bc-b67a-04675d068cbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:29 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "5b1f7035-b2d1-4d19-b8d0-df4fa0232dc6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "5b1f7035-b2d1-4d19-b8d0-df4fa0232dc6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185530Z:5b1f7035-b2d1-4d19-b8d0-df4fa0232dc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:29 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "bd97b323-5537-4c36-a579-66ca859bc109" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bd97b323-5537-4c36-a579-66ca859bc109" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185530Z:bd97b323-5537-4c36-a579-66ca859bc109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "2fbb7eba-c22b-4365-b1ba-342e4267b8b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2fbb7eba-c22b-4365-b1ba-342e4267b8b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185530Z:2fbb7eba-c22b-4365-b1ba-342e4267b8b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "2fb0f0e6-d872-45d0-9518-2630c7a5c62f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2fb0f0e6-d872-45d0-9518-2630c7a5c62f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185531Z:2fb0f0e6-d872-45d0-9518-2630c7a5c62f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "04ec8341-fb0f-4c87-bb2d-8725cb530cd5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "04ec8341-fb0f-4c87-bb2d-8725cb530cd5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185531Z:04ec8341-fb0f-4c87-bb2d-8725cb530cd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "16433724-ccb8-48b9-8d36-4fc9d8aa39d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "16433724-ccb8-48b9-8d36-4fc9d8aa39d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185531Z:16433724-ccb8-48b9-8d36-4fc9d8aa39d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "27b85166-6366-4efc-a6e3-5d20fe6f4661" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "27b85166-6366-4efc-a6e3-5d20fe6f4661" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185531Z:27b85166-6366-4efc-a6e3-5d20fe6f4661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "058b2646-8aeb-4bef-a01a-821da76f9d56" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "058b2646-8aeb-4bef-a01a-821da76f9d56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185531Z:058b2646-8aeb-4bef-a01a-821da76f9d56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "1e6a8ba7-46ac-4496-9634-8ce5d5c65538" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1e6a8ba7-46ac-4496-9634-8ce5d5c65538" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185532Z:1e6a8ba7-46ac-4496-9634-8ce5d5c65538" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "8c3f234a-9919-42d6-862e-23e3841e2af5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8c3f234a-9919-42d6-862e-23e3841e2af5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185532Z:8c3f234a-9919-42d6-862e-23e3841e2af5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "26f37df5-f063-43be-963a-60892633d170" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "26f37df5-f063-43be-963a-60892633d170" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185532Z:26f37df5-f063-43be-963a-60892633d170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "f365521e-5593-41cf-9f28-488e186d539d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f365521e-5593-41cf-9f28-488e186d539d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185532Z:f365521e-5593-41cf-9f28-488e186d539d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "27b0bf6c-faa7-49d1-b2d9-e47a7fbd1fb3" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "27b0bf6c-faa7-49d1-b2d9-e47a7fbd1fb3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185532Z:27b0bf6c-faa7-49d1-b2d9-e47a7fbd1fb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:32 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "99ad72cc-57f4-4b72-b7b5-2cd7a34083b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "99ad72cc-57f4-4b72-b7b5-2cd7a34083b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185533Z:99ad72cc-57f4-4b72-b7b5-2cd7a34083b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:32 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "69a0690e-23c5-43ee-b969-117c8c0c6a1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "69a0690e-23c5-43ee-b969-117c8c0c6a1e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185533Z:69a0690e-23c5-43ee-b969-117c8c0c6a1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:32 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "1a327827-ed36-426c-8e2e-9c17b94265f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1a327827-ed36-426c-8e2e-9c17b94265f2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185533Z:1a327827-ed36-426c-8e2e-9c17b94265f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:32 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "8dfaf97c-007f-49a5-8e67-514f90ae7f1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "8dfaf97c-007f-49a5-8e67-514f90ae7f1e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185533Z:8dfaf97c-007f-49a5-8e67-514f90ae7f1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:32 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "e10c16d4-8429-4455-8451-42a1a1b7d028" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e10c16d4-8429-4455-8451-42a1a1b7d028" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185533Z:e10c16d4-8429-4455-8451-42a1a1b7d028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:33 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "a881f16c-524b-4f7e-a0a1-c4848d34029f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a881f16c-524b-4f7e-a0a1-c4848d34029f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185533Z:a881f16c-524b-4f7e-a0a1-c4848d34029f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:33 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a5d20d7b-e549-416e-9d7f-492d35bf672d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a5d20d7b-e549-416e-9d7f-492d35bf672d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185534Z:a5d20d7b-e549-416e-9d7f-492d35bf672d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:33 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "b99ff923-8e2a-4b6e-9d42-284f3712ceb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b99ff923-8e2a-4b6e-9d42-284f3712ceb4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185534Z:b99ff923-8e2a-4b6e-9d42-284f3712ceb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:33 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "fe676413-e7f4-4d15-8158-dcd911fcd89f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "fe676413-e7f4-4d15-8158-dcd911fcd89f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185534Z:fe676413-e7f4-4d15-8158-dcd911fcd89f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:33 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "307f8056-002e-48e8-8bc5-ce5d78b06e35" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "307f8056-002e-48e8-8bc5-ce5d78b06e35" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185534Z:307f8056-002e-48e8-8bc5-ce5d78b06e35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:33 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "33bcf065-6c2d-4c2a-9448-73677dfacb40" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "33bcf065-6c2d-4c2a-9448-73677dfacb40" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185534Z:33bcf065-6c2d-4c2a-9448-73677dfacb40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "7352eec4-2bec-4621-b1e2-bfaf4d71bece" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7352eec4-2bec-4621-b1e2-bfaf4d71bece" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185535Z:7352eec4-2bec-4621-b1e2-bfaf4d71bece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "1127a01b-726a-4542-91fc-07cdac580744" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1127a01b-726a-4542-91fc-07cdac580744" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185535Z:1127a01b-726a-4542-91fc-07cdac580744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "99c5a3ab-925e-4477-a9aa-987ef11ecda2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "99c5a3ab-925e-4477-a9aa-987ef11ecda2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185535Z:99c5a3ab-925e-4477-a9aa-987ef11ecda2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "f294a12b-790c-4a4f-acf3-3576b4067489" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "f294a12b-790c-4a4f-acf3-3576b4067489" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185535Z:f294a12b-790c-4a4f-acf3-3576b4067489" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:34 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "360feebe-889a-4b3d-8ffb-b67c7fc5dc9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "360feebe-889a-4b3d-8ffb-b67c7fc5dc9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185535Z:360feebe-889a-4b3d-8ffb-b67c7fc5dc9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:35 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/ea666ea5-5095-4b82-b8d9-47533e953857?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZWE2NjZlYTUtNTA5NS00YjgyLWI4ZDktNDc1MzNlOTUzODU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "72" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "48946e8b-daef-4798-a7ad-6ad1478ee87a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "48946e8b-daef-4798-a7ad-6ad1478ee87a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185536Z:48946e8b-daef-4798-a7ad-6ad1478ee87a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL29zRGlzaz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "406b386b-654e-42ee-b0ab-53c1b01921af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2017.06.20\"\r\n }\r\n },\r\n \"diskSizeGB\": 128,\r\n \"timeCreated\": \"2017-11-06T19:50:15.4628125+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "adb45273-21b9-4d50-b641-598ece30c609" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13678" + ], + "x-ms-correlation-request-id": [ + "4dd139be-5bfe-4457-849f-98a3a883564d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185537Z:4dd139be-5bfe-4457-849f-98a3a883564d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL29zRGlzaz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46357615-00a3-4f5f-b3e5-44285e3fcc87" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2017.06.20\"\r\n }\r\n },\r\n \"diskSizeGB\": 128,\r\n \"timeCreated\": \"2017-11-06T19:50:15.4628125+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "a2b2b3f5-ef2e-4ac7-b35b-ec73fbffe378" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13554" + ], + "x-ms-correlation-request-id": [ + "58a89f25-a664-4c21-a977-0580c6db2185" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185608Z:58a89f25-a664-4c21-a977-0580c6db2185" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazE/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8808370a-4112-4914-9f25-70197a187256" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-11-06T19:50:15.4628125+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "93725d49-6ef3-4068-a50a-62d7cb5163ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13677" + ], + "x-ms-correlation-request-id": [ + "b44df324-e276-439b-82fd-ec1cdaad7f8b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185537Z:b44df324-e276-439b-82fd-ec1cdaad7f8b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazE/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a18893a-5d4b-4c9f-bc76-1cb7124792d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-11-06T19:50:15.4628125+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "27efae5d-2fbd-40cb-a7d5-102c5f4cd5b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13553" + ], + "x-ms-correlation-request-id": [ + "f8ad49d7-fd48-4ca8-8efd-dad30d474251" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185609Z:f8ad49d7-fd48-4ca8-8efd-dad30d474251" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazI/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4579e026-4d0f-4677-99df-16f91c251fc8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-11-06T19:50:15.4628125+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "6e45f1db-3e3c-404c-8538-9b2eefd7f857" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13676" + ], + "x-ms-correlation-request-id": [ + "2baf6f2d-7862-4c40-9a97-66ce89090d7a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185537Z:2baf6f2d-7862-4c40-9a97-66ce89090d7a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3Rlc3REYXRhRGlzazI/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c5c0f5e-fa97-4501-a43a-bae3af7d9f38" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-11-06T19:50:15.4628125+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "e7ea5884-ea7e-47e5-a008-654cb0fc2bb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13552" + ], + "x-ms-correlation-request-id": [ + "d15dda0d-6d96-4c9f-953f-fcd6b5f5ca2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185609Z:d15dda0d-6d96-4c9f-953f-fcd6b5f5ca2b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3ZtY3JwdGVzdHBzNjgzN19kaXNrNF9iOGY0YTg0ODdiNGY0NTFhYWM3Nzc5ODFmNWI3ZmI1Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bd8c11d-2ac7-418e-884b-c513702cf4bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 2059,\r\n \"timeCreated\": \"2017-11-06T19:54:37.6100557+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "805" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "31b8635c-2e95-4b3b-83f9-c1703984b723" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13675" + ], + "x-ms-correlation-request-id": [ + "dbe2d54d-c98c-4583-aba1-bf1e6ca314ca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185538Z:dbe2d54d-c98c-4583-aba1-bf1e6ca314ca" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Rpc2tzL3ZtY3JwdGVzdHBzNjgzN19kaXNrNF9iOGY0YTg0ODdiNGY0NTFhYWM3Nzc5ODFmNWI3ZmI1Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3ab98ce-23e5-4871-9029-b8f52729efd6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 2059,\r\n \"timeCreated\": \"2017-11-06T19:54:37.6100557+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/disks/vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\",\r\n \"name\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "805" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "5dd42808-0946-4c59-b07f-647eab78c7d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13551" + ], + "x-ms-correlation-request-id": [ + "7ab3ef85-74b7-474a-a154-3d33fed26e2d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185609Z:7ab3ef85-74b7-474a-a154-3d33fed26e2d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4MzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": []\r\n }\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3254" + ], + "x-ms-client-request-id": [ + "e9dda1bf-7133-4c8e-9aae-10e54b04ed5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1993" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b6708cd6-7b3d-4339-a70f-62cb3b470c59" + ], + "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": [ + "4b45771f-46e5-4bd1-9ef9-4feb961fee8c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185541Z:4b45771f-46e5-4bd1-9ef9-4feb961fee8c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d4eb3642-55aa-43a6-a9b8-1aca7b7f6102" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13674" + ], + "x-ms-correlation-request-id": [ + "8c13de85-c9a6-4207-b190-c9b4e9e756dc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185541Z:8c13de85-c9a6-4207-b190-c9b4e9e756dc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f801566c-ed96-4d38-a481-11e9bb18719b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13673" + ], + "x-ms-correlation-request-id": [ + "391d97ea-2acc-4a68-a571-76cd7ff33ff9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185541Z:391d97ea-2acc-4a68-a571-76cd7ff33ff9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0915f9ab-0d24-41f2-92a5-1774eaff9163" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13672" + ], + "x-ms-correlation-request-id": [ + "6c0b807a-f5da-4d2c-9308-fa004278d076" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185542Z:6c0b807a-f5da-4d2c-9308-fa004278d076" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1a40a5a-11ec-48e4-a209-c53ee956dd9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13671" + ], + "x-ms-correlation-request-id": [ + "d1f2e287-077a-45c6-9678-32920fa4dca8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185542Z:d1f2e287-077a-45c6-9678-32920fa4dca8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f96a86e5-3c78-4e12-a240-c21dd4617209" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13670" + ], + "x-ms-correlation-request-id": [ + "2b45c09e-ee1c-4b7f-9739-b7f29b362d87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185542Z:2b45c09e-ee1c-4b7f-9739-b7f29b362d87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c8dc70fe-e509-4b25-b3f1-d3aadd699094" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13669" + ], + "x-ms-correlation-request-id": [ + "b41bff1a-ecc3-4c2e-9fdb-ddec52148265" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185542Z:b41bff1a-ecc3-4c2e-9fdb-ddec52148265" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3f1d98bb-a40e-4aea-90aa-f26846587f1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13668" + ], + "x-ms-correlation-request-id": [ + "ee6ccf02-237a-403a-a9ed-7f52ec0c9c41" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185542Z:ee6ccf02-237a-403a-a9ed-7f52ec0c9c41" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1efb2de6-fbdb-46c7-b923-331d28c01a64" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13667" + ], + "x-ms-correlation-request-id": [ + "2d85c045-2928-4e51-825e-519c9c64d0f9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185543Z:2d85c045-2928-4e51-825e-519c9c64d0f9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4d33138e-baa5-4a95-8cc8-dcf01c8df27e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13666" + ], + "x-ms-correlation-request-id": [ + "8c095433-01d3-4c22-9eec-012c9bbd151f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185543Z:8c095433-01d3-4c22-9eec-012c9bbd151f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6f1dfe13-16bd-4fb6-a01a-c70e8838018a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13665" + ], + "x-ms-correlation-request-id": [ + "f9ce5bfb-389e-4046-8ff7-39d070bba36b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185543Z:f9ce5bfb-389e-4046-8ff7-39d070bba36b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "21f6fad7-52c2-4e6b-8ffc-52392ba3fd35" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13664" + ], + "x-ms-correlation-request-id": [ + "fbdbd659-1d5d-4b9f-9dc9-528255610731" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185543Z:fbdbd659-1d5d-4b9f-9dc9-528255610731" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e9978a07-e6f3-43a1-a828-f7920fbcfada" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13663" + ], + "x-ms-correlation-request-id": [ + "08679d81-04f2-414c-9b94-b57d429fa2ae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185544Z:08679d81-04f2-414c-9b94-b57d429fa2ae" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ebcc12c-ac37-491a-b98e-9875be6ccdaf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13662" + ], + "x-ms-correlation-request-id": [ + "b3cb2d33-a667-4707-8743-56f70494bea2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185544Z:b3cb2d33-a667-4707-8743-56f70494bea2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "406d5c3f-c83f-4681-b26e-8d693b3e5b61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13661" + ], + "x-ms-correlation-request-id": [ + "b26956bb-6b9b-48be-875d-9d6ec42efd68" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185544Z:b26956bb-6b9b-48be-875d-9d6ec42efd68" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ea373999-8b1c-452d-8df0-8676db49b3ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13660" + ], + "x-ms-correlation-request-id": [ + "7984b815-4f89-4ff8-9040-359d4dc259a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185544Z:7984b815-4f89-4ff8-9040-359d4dc259a8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "357ca674-c545-4d0f-88bd-672a44081491" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13659" + ], + "x-ms-correlation-request-id": [ + "8a34e4cb-977e-41e8-b33e-4058a123e921" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185544Z:8a34e4cb-977e-41e8-b33e-4058a123e921" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0d1dadcb-33e3-4f9c-a25e-b1687af3e6ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13658" + ], + "x-ms-correlation-request-id": [ + "58585f66-058e-4b6f-8fae-5d3bf8e8ec24" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185545Z:58585f66-058e-4b6f-8fae-5d3bf8e8ec24" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2d734378-1b66-4c8a-8d8c-9b344aad78a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13657" + ], + "x-ms-correlation-request-id": [ + "7acf61f9-5cfb-457f-9e20-e4896a485ae5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185545Z:7acf61f9-5cfb-457f-9e20-e4896a485ae5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3c9e71b1-eca2-49ca-be76-059fb161bdb1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13656" + ], + "x-ms-correlation-request-id": [ + "80c14ab5-974a-469f-a0d6-2f052760a30b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185545Z:80c14ab5-974a-469f-a0d6-2f052760a30b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "025bacbd-4019-493d-8709-d00c4554b5d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13655" + ], + "x-ms-correlation-request-id": [ + "e9ea92e9-fb24-46bb-9d8e-8400ef5fdbe5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185545Z:e9ea92e9-fb24-46bb-9d8e-8400ef5fdbe5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3a2494e7-9b41-4568-b718-caf922f2a1bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13654" + ], + "x-ms-correlation-request-id": [ + "2dc89840-60fd-4daf-acf4-ddbf05cc218a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185546Z:2dc89840-60fd-4daf-acf4-ddbf05cc218a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f33aa9f5-da72-4d92-9f90-b8e8d3f6c2a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13653" + ], + "x-ms-correlation-request-id": [ + "791317c7-b848-4ac7-b750-143185230c3e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185546Z:791317c7-b848-4ac7-b750-143185230c3e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1ef72e65-a505-4573-bfd7-333394551add" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13652" + ], + "x-ms-correlation-request-id": [ + "d78b4a5a-5e02-4670-b951-803581ac19ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185546Z:d78b4a5a-5e02-4670-b951-803581ac19ad" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2163664e-54f7-4a46-b359-d0e15b9059f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13651" + ], + "x-ms-correlation-request-id": [ + "f22eaa78-1eb8-4865-863f-16c9da6514c6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185546Z:f22eaa78-1eb8-4865-863f-16c9da6514c6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "899850d2-0ec9-4d22-9916-c6057fc5e555" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13650" + ], + "x-ms-correlation-request-id": [ + "eb9784f1-4f36-4f74-8dcd-348b0ad75f2e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185547Z:eb9784f1-4f36-4f74-8dcd-348b0ad75f2e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3b420592-a947-4201-b877-5ba877c174c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13649" + ], + "x-ms-correlation-request-id": [ + "27341e0c-8735-4fcf-83e9-6b1f2eaf9610" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185547Z:27341e0c-8735-4fcf-83e9-6b1f2eaf9610" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f36501da-248e-4968-bf97-b23ae6c472c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13648" + ], + "x-ms-correlation-request-id": [ + "c3e28b40-3525-4e9d-ba27-6deb4c643efd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185547Z:c3e28b40-3525-4e9d-ba27-6deb4c643efd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7fa58d2b-5b60-4ae4-a508-c7c8050ae777" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13647" + ], + "x-ms-correlation-request-id": [ + "33089f73-8f9a-4da2-a41a-5c15ae1a29b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185547Z:33089f73-8f9a-4da2-a41a-5c15ae1a29b0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "afbd4c6d-dc3f-4bb4-893e-17b3eeb7574b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13646" + ], + "x-ms-correlation-request-id": [ + "dc07aed0-87d6-4ea6-a944-fb735c47110c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185547Z:dc07aed0-87d6-4ea6-a944-fb735c47110c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0dd016f7-ccd2-4598-ac35-1bd6be5d6e28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13645" + ], + "x-ms-correlation-request-id": [ + "14d7a15f-0015-4094-9443-6f97b6231115" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185548Z:14d7a15f-0015-4094-9443-6f97b6231115" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c3d92dec-d80e-422f-9350-1e51deaaba66" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13644" + ], + "x-ms-correlation-request-id": [ + "3271fc9b-2534-42ea-aa3b-72f0e0fdf34e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185548Z:3271fc9b-2534-42ea-aa3b-72f0e0fdf34e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e0c9fdee-f652-41eb-9610-0031fd9b914e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13643" + ], + "x-ms-correlation-request-id": [ + "d946907d-617f-4a60-a67d-6ad5d4be40fe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185548Z:d946907d-617f-4a60-a67d-6ad5d4be40fe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e15cef03-6519-4983-9b05-b6a54408e632" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13642" + ], + "x-ms-correlation-request-id": [ + "a2191d1b-fc2c-4c29-ba79-e7030eda4a25" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185548Z:a2191d1b-fc2c-4c29-ba79-e7030eda4a25" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "94fbbf2d-07ab-42f6-a343-efcd5ed52ba4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13641" + ], + "x-ms-correlation-request-id": [ + "9cd105ab-200d-42c3-a0c0-7a14eae974c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185549Z:9cd105ab-200d-42c3-a0c0-7a14eae974c5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bb79ccdd-8ccf-471e-ba4d-1366a5c80454" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13640" + ], + "x-ms-correlation-request-id": [ + "a1645f81-5274-474a-a358-cdc838415bab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185549Z:a1645f81-5274-474a-a358-cdc838415bab" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7a85d1d2-6554-42b9-8606-8f96783a305f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13639" + ], + "x-ms-correlation-request-id": [ + "b18c901d-5b5f-404a-845f-ee04801d0bbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185549Z:b18c901d-5b5f-404a-845f-ee04801d0bbd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e581e4a7-92da-4f15-a659-80b3464bf28f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13638" + ], + "x-ms-correlation-request-id": [ + "66b5d6f8-35c8-4528-8ebe-dadda8b0749f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185549Z:66b5d6f8-35c8-4528-8ebe-dadda8b0749f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6e9afdf5-05d0-48e1-944c-ac17acc0f98f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13637" + ], + "x-ms-correlation-request-id": [ + "2f603d26-0a72-4a90-9f61-dc2a766ad14f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185549Z:2f603d26-0a72-4a90-9f61-dc2a766ad14f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e6c059b9-1dac-405b-ae1b-44361e80c390" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13636" + ], + "x-ms-correlation-request-id": [ + "759b2691-3be7-432a-9eb3-98d78bf24033" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185550Z:759b2691-3be7-432a-9eb3-98d78bf24033" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d2c520db-1459-4725-87a6-772f63e2e5d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13635" + ], + "x-ms-correlation-request-id": [ + "e3f0b63b-2922-4ec5-9f33-4e3f74c05781" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185550Z:e3f0b63b-2922-4ec5-9f33-4e3f74c05781" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7cfc7a3d-eda0-45e0-bfdb-34348cf4a3c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13634" + ], + "x-ms-correlation-request-id": [ + "fbf0b151-6179-49c2-b167-682cac2d7287" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185550Z:fbf0b151-6179-49c2-b167-682cac2d7287" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2cccc2e7-adde-4bce-86f7-38e6d8f0c2c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13633" + ], + "x-ms-correlation-request-id": [ + "bd287423-25c1-4743-81fe-bfc69baf0a1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185550Z:bd287423-25c1-4743-81fe-bfc69baf0a1b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d705d2f8-fe58-4fbd-a16a-3894be565581" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13632" + ], + "x-ms-correlation-request-id": [ + "25567bba-19eb-4d1d-8b26-4964ad4c7114" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185551Z:25567bba-19eb-4d1d-8b26-4964ad4c7114" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4344d59f-a82a-4ce6-9467-a2fc1dede78c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13631" + ], + "x-ms-correlation-request-id": [ + "56e8bf6d-163b-4a54-92b7-0091fa7fa84b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185551Z:56e8bf6d-163b-4a54-92b7-0091fa7fa84b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "01ea8aaa-9da4-478f-9bb8-cda0c71df945" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13630" + ], + "x-ms-correlation-request-id": [ + "a0a56b93-61c8-445b-867c-6bee9d00fcfc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185551Z:a0a56b93-61c8-445b-867c-6bee9d00fcfc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e5ac2a96-7808-4567-ba61-765d749c2547" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13629" + ], + "x-ms-correlation-request-id": [ + "4a2fa2d3-d9f2-489c-a1b1-2ba104458ed1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185551Z:4a2fa2d3-d9f2-489c-a1b1-2ba104458ed1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c089ad7c-c44b-43c1-a5a0-71aeee6d3524" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13628" + ], + "x-ms-correlation-request-id": [ + "36a85081-b34c-4dc4-8c0a-9d7f43c49c8b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185551Z:36a85081-b34c-4dc4-8c0a-9d7f43c49c8b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "10af68ae-b583-473a-9e29-3c3d80bba665" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13627" + ], + "x-ms-correlation-request-id": [ + "b50ba21c-b47b-4c5e-9e03-1ce373461c6d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185552Z:b50ba21c-b47b-4c5e-9e03-1ce373461c6d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "43ae9e30-eac4-4465-8dbf-aacfcba70a9e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13626" + ], + "x-ms-correlation-request-id": [ + "92a3f729-d21a-407f-9afb-431c60220c41" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185552Z:92a3f729-d21a-407f-9afb-431c60220c41" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2212fc57-4140-4a09-bd1e-95cd07dcde78" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13625" + ], + "x-ms-correlation-request-id": [ + "ba03211c-d7c3-4608-a34d-985a934465d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185552Z:ba03211c-d7c3-4608-a34d-985a934465d0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8360a0aa-ec69-44f6-9c94-755124e267d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13624" + ], + "x-ms-correlation-request-id": [ + "d698db2b-8eac-4cde-8d87-d88acd7f549b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185552Z:d698db2b-8eac-4cde-8d87-d88acd7f549b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "30b51293-b59d-459f-9d0f-de7854725d56" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13623" + ], + "x-ms-correlation-request-id": [ + "cde1f845-e16d-47c3-a138-76fc5f83bc0e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185553Z:cde1f845-e16d-47c3-a138-76fc5f83bc0e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "51fbc9f0-4c3c-4ea2-b322-6e525eab73b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13622" + ], + "x-ms-correlation-request-id": [ + "006e9ee1-8af8-478c-af2d-b9e59fdd4812" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185553Z:006e9ee1-8af8-478c-af2d-b9e59fdd4812" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "44b4d1b0-7c68-4197-801b-6f4c874e8c7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13621" + ], + "x-ms-correlation-request-id": [ + "8f4bc331-6b83-4224-b008-499f7033226e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185553Z:8f4bc331-6b83-4224-b008-499f7033226e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e1943157-3145-4135-b311-077db9fbcfdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13620" + ], + "x-ms-correlation-request-id": [ + "0b923f1b-eae6-4104-9ad4-e381f33e4923" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185553Z:0b923f1b-eae6-4104-9ad4-e381f33e4923" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "65c3ccc1-336f-49b2-9922-77d4dee6ec90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13619" + ], + "x-ms-correlation-request-id": [ + "03683d23-06f0-41b0-8094-fecdce1a906b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185553Z:03683d23-06f0-41b0-8094-fecdce1a906b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ca5c7618-6d3c-49a5-953f-12ca15ab22f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13618" + ], + "x-ms-correlation-request-id": [ + "86f389c8-2687-434e-b762-4970d581025d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185554Z:86f389c8-2687-434e-b762-4970d581025d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6ca930c9-cf6d-47d3-b28b-01d0c90286cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13617" + ], + "x-ms-correlation-request-id": [ + "609e00d4-ef7d-4792-8c81-8e7498ae5ade" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185554Z:609e00d4-ef7d-4792-8c81-8e7498ae5ade" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "42aaaf37-5d78-4d34-b8a6-5d675acade8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13616" + ], + "x-ms-correlation-request-id": [ + "e6bdb3ea-8e19-4eb1-940a-6d7d0b58fd94" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185554Z:e6bdb3ea-8e19-4eb1-940a-6d7d0b58fd94" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b85e45ba-32a0-423d-b36d-cfc283653f50" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13615" + ], + "x-ms-correlation-request-id": [ + "d2a59b2a-c1ab-4663-9e26-4dd0c20ac7c7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185554Z:d2a59b2a-c1ab-4663-9e26-4dd0c20ac7c7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "006308e7-c813-4f3d-b6df-6bde89008583" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13614" + ], + "x-ms-correlation-request-id": [ + "9846d817-ef39-4852-8ca2-d351bff2deeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185555Z:9846d817-ef39-4852-8ca2-d351bff2deeb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "490df2e3-95c0-4fd7-a0b5-465926857dea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13613" + ], + "x-ms-correlation-request-id": [ + "225dd7ba-ab4d-466a-8361-3e4267d37b7a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185555Z:225dd7ba-ab4d-466a-8361-3e4267d37b7a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "39d1f620-db7d-462c-933b-513afd664a59" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13612" + ], + "x-ms-correlation-request-id": [ + "070543a8-f4b9-4698-aac7-ab6f4e12627a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185555Z:070543a8-f4b9-4698-aac7-ab6f4e12627a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c48dfefc-84c4-4cad-8a13-3d0f6d79bf3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13611" + ], + "x-ms-correlation-request-id": [ + "c2a59a58-47f5-4fc4-8115-8ad7a63a8bdb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185555Z:c2a59a58-47f5-4fc4-8115-8ad7a63a8bdb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fd2c9e4f-205d-465c-a40e-9bd7e79d092b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13610" + ], + "x-ms-correlation-request-id": [ + "45337fc3-5479-4359-96cb-dd658b5210d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185555Z:45337fc3-5479-4359-96cb-dd658b5210d0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "edde0025-5271-4093-b0ae-baa92931364c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13609" + ], + "x-ms-correlation-request-id": [ + "e104ad4d-3ac7-4a50-8f71-96d199f06a2a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185556Z:e104ad4d-3ac7-4a50-8f71-96d199f06a2a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ee083f6d-e437-40d2-be1b-952637edc665" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13608" + ], + "x-ms-correlation-request-id": [ + "6a5fd348-cb84-4cf3-b616-e887fd389e21" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185556Z:6a5fd348-cb84-4cf3-b616-e887fd389e21" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6482019c-1940-4460-b100-8d15aa17229a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13607" + ], + "x-ms-correlation-request-id": [ + "82772a31-de53-45dc-a617-f4f032670d87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185556Z:82772a31-de53-45dc-a617-f4f032670d87" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cfe06e40-aef9-4fe4-9f97-ef117af458af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13606" + ], + "x-ms-correlation-request-id": [ + "a357851f-d4f5-438a-803b-d44e03028641" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185556Z:a357851f-d4f5-438a-803b-d44e03028641" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "659b44a5-cd9f-4411-a548-f35e3cecd1e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13605" + ], + "x-ms-correlation-request-id": [ + "c5bffc22-af73-4e24-a37c-5f478d538329" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185557Z:c5bffc22-af73-4e24-a37c-5f478d538329" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1df56ed8-0932-4f2c-987d-b482617133e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13604" + ], + "x-ms-correlation-request-id": [ + "80641746-73a6-46ec-9ff7-f2ba942c2420" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185557Z:80641746-73a6-46ec-9ff7-f2ba942c2420" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "69b1fffe-9336-4fe3-92fd-96d6a0f45b17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13603" + ], + "x-ms-correlation-request-id": [ + "a33963bd-b613-411b-aa97-837103a3d638" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185557Z:a33963bd-b613-411b-aa97-837103a3d638" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d460a6ab-ccf4-4dee-af80-02a79ceb656c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13602" + ], + "x-ms-correlation-request-id": [ + "92486a35-1741-412b-8f67-2ebbdc8b74a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185557Z:92486a35-1741-412b-8f67-2ebbdc8b74a6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "21b5502f-8371-40f5-aff9-9652248008d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13601" + ], + "x-ms-correlation-request-id": [ + "c9fff58c-4296-4988-860d-24926d544b65" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185557Z:c9fff58c-4296-4988-860d-24926d544b65" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ae69361e-de9c-4ec6-bb49-e8505f5f6285" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13600" + ], + "x-ms-correlation-request-id": [ + "934690af-83eb-4d24-ba72-ba7ca1d93ca2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185558Z:934690af-83eb-4d24-ba72-ba7ca1d93ca2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "03d9951a-f858-43a1-8997-7dfc862d188a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13599" + ], + "x-ms-correlation-request-id": [ + "e5cc7da9-d575-4945-a15b-e3337a2df415" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185558Z:e5cc7da9-d575-4945-a15b-e3337a2df415" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "879090d6-4b5f-41f3-8ad8-1abfa7bef526" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13598" + ], + "x-ms-correlation-request-id": [ + "ab21ef29-0c7e-41a1-89ac-41a6def00b6e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185558Z:ab21ef29-0c7e-41a1-89ac-41a6def00b6e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c5a46f2a-c328-4a86-bbb2-b4d39d2b5643" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13597" + ], + "x-ms-correlation-request-id": [ + "f0b13686-c969-498a-bdde-687c14963b06" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185558Z:f0b13686-c969-498a-bdde-687c14963b06" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fef280a3-38c2-4144-a56e-8365604d6b93" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13596" + ], + "x-ms-correlation-request-id": [ + "741d7cba-40d4-403d-ace1-54e230e03a5f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185559Z:741d7cba-40d4-403d-ace1-54e230e03a5f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6a18c0f7-741a-4e41-97f0-059028e8127a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13595" + ], + "x-ms-correlation-request-id": [ + "cbbabf53-a4eb-4612-b703-4ba2480c892f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185559Z:cbbabf53-a4eb-4612-b703-4ba2480c892f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ee4590fc-daa0-4a05-9e7e-208f1ce568a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13594" + ], + "x-ms-correlation-request-id": [ + "f4f86924-f597-45a0-b72b-e0c1f6af7828" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185559Z:f4f86924-f597-45a0-b72b-e0c1f6af7828" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1d22d006-001f-4776-b0a0-ec1c752045bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13593" + ], + "x-ms-correlation-request-id": [ + "bc08eb56-8550-4ea0-b800-0d82d165b120" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185559Z:bc08eb56-8550-4ea0-b800-0d82d165b120" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d6069e60-f800-4365-b378-3c0646302551" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13592" + ], + "x-ms-correlation-request-id": [ + "74edf9a5-fa8e-4e7c-9539-d314c1269553" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185559Z:74edf9a5-fa8e-4e7c-9539-d314c1269553" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8e3352ff-6880-44ec-83af-fd6a58a495fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13591" + ], + "x-ms-correlation-request-id": [ + "2b5ecadc-6b73-471a-bf80-ef3fd588ded7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185600Z:2b5ecadc-6b73-471a-bf80-ef3fd588ded7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d41ee787-49b8-4090-bba5-6007aa769ab6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13590" + ], + "x-ms-correlation-request-id": [ + "65e251d9-8ba3-4216-a3f3-614301a2065e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185600Z:65e251d9-8ba3-4216-a3f3-614301a2065e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "684bd2d0-7e5e-49e3-b1dd-edf4be095207" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13589" + ], + "x-ms-correlation-request-id": [ + "bea83aa8-c83b-4873-88fa-6bf5953e2cad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185600Z:bea83aa8-c83b-4873-88fa-6bf5953e2cad" + ], + "Date": [ + "Mon, 06 Nov 2017 18:55:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e39a53e7-29eb-4310-a93f-b201db636d92" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13588" + ], + "x-ms-correlation-request-id": [ + "c77bbed1-eeec-451d-83ba-7f8f1c1f23fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185600Z:c77bbed1-eeec-451d-83ba-7f8f1c1f23fd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1b87fb6-0a90-4b69-9bc4-a6fa15fbea38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13587" + ], + "x-ms-correlation-request-id": [ + "267e94a9-f54e-44cf-9644-edaa60d9aaa9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185601Z:267e94a9-f54e-44cf-9644-edaa60d9aaa9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4c685ada-5eb4-412d-9216-82ce55effdf9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13586" + ], + "x-ms-correlation-request-id": [ + "e97ae1db-414a-45ed-a3ad-0dbe9d20a5f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185601Z:e97ae1db-414a-45ed-a3ad-0dbe9d20a5f8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4aa85ede-7332-4d07-9eab-edc7db13c575" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13585" + ], + "x-ms-correlation-request-id": [ + "5f4fb375-1640-4cac-a6c4-ac6f3f5f69c6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185601Z:5f4fb375-1640-4cac-a6c4-ac6f3f5f69c6" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b56c9dce-1606-443c-8580-2bbd3eff9f29" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13584" + ], + "x-ms-correlation-request-id": [ + "a2e684a8-4ebc-4b24-a690-5f00acfe4be5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185601Z:a2e684a8-4ebc-4b24-a690-5f00acfe4be5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "081e04e3-845b-4748-a1e0-bb84fc787136" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13583" + ], + "x-ms-correlation-request-id": [ + "4995640b-c43d-4260-a964-d8ddc76b32c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185601Z:4995640b-c43d-4260-a964-d8ddc76b32c9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1c845858-3fcc-40b2-8db1-069336f966b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13582" + ], + "x-ms-correlation-request-id": [ + "75c940d1-d95e-471b-950e-79fb2630b53d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185602Z:75c940d1-d95e-471b-950e-79fb2630b53d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f68ac296-066b-4c94-82c8-bf0fb8ae6ea8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13581" + ], + "x-ms-correlation-request-id": [ + "6634399b-becf-4cf2-b541-449e202528ea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185602Z:6634399b-becf-4cf2-b541-449e202528ea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "783079db-0382-4c9f-9d8f-c04440496aee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13580" + ], + "x-ms-correlation-request-id": [ + "b5e88cbc-6dc7-4a8f-83a7-563470865699" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185602Z:b5e88cbc-6dc7-4a8f-83a7-563470865699" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eae9eda3-03ba-4366-b64d-c933d6a9ebba" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13579" + ], + "x-ms-correlation-request-id": [ + "d5f836dd-f50d-4d93-85b0-780debfacbf8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185602Z:d5f836dd-f50d-4d93-85b0-780debfacbf8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48034fea-7174-47ad-84ac-f6fce3b59de6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13578" + ], + "x-ms-correlation-request-id": [ + "253dc485-2998-47b4-b1b2-de88cec4860e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185603Z:253dc485-2998-47b4-b1b2-de88cec4860e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5a323dc8-6d91-4d52-afb2-c19c20992fd5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13577" + ], + "x-ms-correlation-request-id": [ + "54f61e5d-019e-4471-a943-b493e9be5cd2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185603Z:54f61e5d-019e-4471-a943-b493e9be5cd2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a8c73534-7993-4912-b988-e69bceab14de" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13576" + ], + "x-ms-correlation-request-id": [ + "e0b13fa4-3295-447f-a378-0ab65b9c1c51" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185603Z:e0b13fa4-3295-447f-a378-0ab65b9c1c51" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4da9cb2c-cfc5-46a0-9c2c-723687d57a31" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13575" + ], + "x-ms-correlation-request-id": [ + "ebdea751-a4e7-4a83-a5b0-38d184dc6913" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185603Z:ebdea751-a4e7-4a83-a5b0-38d184dc6913" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "28f8e42b-fb84-49e4-a51f-162f39934fd2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13574" + ], + "x-ms-correlation-request-id": [ + "56c93bcb-db0b-457c-859c-957d22c4a801" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185603Z:56c93bcb-db0b-457c-859c-957d22c4a801" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e8b4ea4b-4a70-4db2-944e-708d2f7b8330" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13573" + ], + "x-ms-correlation-request-id": [ + "27036991-46b3-4c5d-be57-7f195cd4361b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185604Z:27036991-46b3-4c5d-be57-7f195cd4361b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c4bfb0d0-f7ac-4e39-99ad-b1d738986c42" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13572" + ], + "x-ms-correlation-request-id": [ + "b4b71be2-cd5b-4fa3-9013-b6c42a4bb02c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185604Z:b4b71be2-cd5b-4fa3-9013-b6c42a4bb02c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b7e65074-fbc6-4978-ad71-e1035ac03efb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13571" + ], + "x-ms-correlation-request-id": [ + "e0e845bf-a187-41c6-99c8-7bd8474130dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185604Z:e0e845bf-a187-41c6-99c8-7bd8474130dd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "52d5ee34-8880-44c6-914f-70142128cc1c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13570" + ], + "x-ms-correlation-request-id": [ + "6d6f5367-a322-4486-82d2-116b1d316916" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185604Z:6d6f5367-a322-4486-82d2-116b1d316916" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6305c7f6-27a2-4b7f-ae1a-c4cd1481d929" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13569" + ], + "x-ms-correlation-request-id": [ + "418e4a89-c7e2-46f1-8a4d-c7f81a774653" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185605Z:418e4a89-c7e2-46f1-8a4d-c7f81a774653" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9d2c3fe7-258c-491c-93c4-200b8d64b969" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13568" + ], + "x-ms-correlation-request-id": [ + "e7b90523-8f4b-41e4-b9bd-8f8a3e306f5c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185605Z:e7b90523-8f4b-41e4-b9bd-8f8a3e306f5c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e5c9a8c8-c2a2-4042-81e8-bafc3e28b268" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13567" + ], + "x-ms-correlation-request-id": [ + "a18e3acb-ca10-40da-9951-fde16e3f779d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185605Z:a18e3acb-ca10-40da-9951-fde16e3f779d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2f20d0bc-c051-49a8-a872-5085d042995d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13566" + ], + "x-ms-correlation-request-id": [ + "e5051339-85e2-486a-b156-59156d95e110" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185605Z:e5051339-85e2-486a-b156-59156d95e110" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "81e0b3ff-c4e1-4f7f-8b2c-212f72ca6773" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13565" + ], + "x-ms-correlation-request-id": [ + "b8591633-c3d8-456d-bc13-105c65d0dcfc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185605Z:b8591633-c3d8-456d-bc13-105c65d0dcfc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1c3f461-6f18-4101-8a5f-4bd6db71364b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13564" + ], + "x-ms-correlation-request-id": [ + "ef8da14d-7cc6-4332-be48-3487f6200a12" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185606Z:ef8da14d-7cc6-4332-be48-3487f6200a12" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "675c0b42-41b6-4930-a48c-65dfcfcf8776" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13563" + ], + "x-ms-correlation-request-id": [ + "9c8439d7-46c1-4df0-8083-5e2367c215a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185606Z:9c8439d7-46c1-4df0-8083-5e2367c215a1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "52eae924-4cd0-4484-a464-b6e9f54d5ce4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13562" + ], + "x-ms-correlation-request-id": [ + "df1ad508-9c36-43f8-a5fb-685b6449e7ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185606Z:df1ad508-9c36-43f8-a5fb-685b6449e7ce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bdc812b0-1a18-4b93-bb0e-a124b6f01a2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13561" + ], + "x-ms-correlation-request-id": [ + "a94d3124-c469-4f40-96c1-76e3f74ffaf3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185606Z:a94d3124-c469-4f40-96c1-76e3f74ffaf3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b6708cd6-7b3d-4339-a70f-62cb3b470c59?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I2NzA4Y2Q2LTdiM2QtNDMzOS1hNzBmLTYyY2IzYjQ3MGM1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:55:41.0329756+01:00\",\r\n \"endTime\": \"2017-11-06T19:56:07.3766824+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b6708cd6-7b3d-4339-a70f-62cb3b470c59\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ee5a57bc-39d4-4bc0-98fe-73847bd87b9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13560" + ], + "x-ms-correlation-request-id": [ + "f02f4cc1-a603-45c2-b361-32d3feb24cce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185607Z:f02f4cc1-a603-45c2-b361-32d3feb24cce" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4MzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "00f96f9d-fb5e-4213-b77d-9ea8b692bc83" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13559" + ], + "x-ms-correlation-request-id": [ + "418e33dc-4c0e-4b31-90c1-36edad2d6999" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185607Z:418e33dc-4c0e-4b31-90c1-36edad2d6999" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4MzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "970ae8e2-46b0-4443-9b48-823c50c58e8b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 48\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 3200\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps6837_disk4_b8f4a8487b4f451aac777981f5b7fb56\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455949364492956\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1994" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b892e70f-94b0-4f71-bf28-f6deef5ff26b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13557" + ], + "x-ms-correlation-request-id": [ + "309c5159-8f30-4a3a-813c-3eb05f582b9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185607Z:309c5159-8f30-4a3a-813c-3eb05f582b9b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps6837/providers/Microsoft.Compute/virtualMachines/vmcrptestps6837/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczY4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczY4MzcvZXh0ZW5zaW9ucy9BenVyZUVuaGFuY2VkTW9uaXRvckZvckxpbnV4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a25b550-4538-449d-b57f-0cd0637d8df5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9953eed8-2ec1-4551-b35c-8038659bb887" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?monitor=true&api-version=2017-03-30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "654408f4-5afa-4ed6-9295-9f3298f4b90e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185610Z:654408f4-5afa-4ed6-9295-9f3298f4b90e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:09 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7b601362-a939-44a0-87c2-252bf50729f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13549" + ], + "x-ms-correlation-request-id": [ + "bb84973a-2d7d-4bb4-91ed-6aeff8f38cfb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185610Z:bb84973a-2d7d-4bb4-91ed-6aeff8f38cfb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "50aa1912-76cf-4293-bb2d-bc2cd421eb3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13548" + ], + "x-ms-correlation-request-id": [ + "fa21b694-cff7-41a0-9138-c522f72dcfa9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185611Z:fa21b694-cff7-41a0-9138-c522f72dcfa9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5f3b205b-32a5-4f61-8427-f40ca7a14b81" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13547" + ], + "x-ms-correlation-request-id": [ + "019a70cc-2d8b-4c42-bc82-0bd164d0e96f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185611Z:019a70cc-2d8b-4c42-bc82-0bd164d0e96f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "30ef5dbe-5b82-4033-8b34-45119650dc89" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13546" + ], + "x-ms-correlation-request-id": [ + "b257ed9c-9afc-4aa8-8d33-fc58c7f05db8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185611Z:b257ed9c-9afc-4aa8-8d33-fc58c7f05db8" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1acd7191-aae9-42e0-a6d0-873a02a6beea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13545" + ], + "x-ms-correlation-request-id": [ + "e92d3fcf-8636-4601-80ba-2d26a53e14dc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185611Z:e92d3fcf-8636-4601-80ba-2d26a53e14dc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "61447700-3f1c-4226-855f-a9dabc18ac5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13544" + ], + "x-ms-correlation-request-id": [ + "2d836410-7cf1-4dd2-bff4-5533cc3b1581" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185612Z:2d836410-7cf1-4dd2-bff4-5533cc3b1581" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8cfb7a82-6f2e-4662-800b-253ea4f5d34b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13543" + ], + "x-ms-correlation-request-id": [ + "891499cb-a0cf-4f11-8a13-2547d3ce262c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185612Z:891499cb-a0cf-4f11-8a13-2547d3ce262c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b4d074a9-bb52-425d-bb28-76a852178d11" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13542" + ], + "x-ms-correlation-request-id": [ + "dc8ff19d-9dd4-46eb-9efc-41f6566b3523" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185612Z:dc8ff19d-9dd4-46eb-9efc-41f6566b3523" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "48d2dcef-d477-4833-817e-9198e56fc53f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13541" + ], + "x-ms-correlation-request-id": [ + "b307b4e7-cf4b-4081-9ccd-0d172f9dd5fc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185612Z:b307b4e7-cf4b-4081-9ccd-0d172f9dd5fc" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "163bb748-0c4d-4a25-af2b-b6f6a049bc75" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13540" + ], + "x-ms-correlation-request-id": [ + "990d8c25-3cc1-4fd4-a13a-5fb946148aaa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185612Z:990d8c25-3cc1-4fd4-a13a-5fb946148aaa" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fc383bcc-4910-40b1-abfc-1985df47e945" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13539" + ], + "x-ms-correlation-request-id": [ + "b7a2492b-7957-4f60-82bf-f5762d6cad46" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185613Z:b7a2492b-7957-4f60-82bf-f5762d6cad46" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0089e07b-8d5c-4b9d-a310-478db3cc4526" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13538" + ], + "x-ms-correlation-request-id": [ + "e74b34ae-0c4a-4cab-96ef-1d6adf1eea5a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185613Z:e74b34ae-0c4a-4cab-96ef-1d6adf1eea5a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0fc6804c-750b-4bd5-9b8e-1ff829d9a178" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13537" + ], + "x-ms-correlation-request-id": [ + "63e728a1-3325-4349-a7af-f165c6e5a095" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185613Z:63e728a1-3325-4349-a7af-f165c6e5a095" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ea573e90-9345-4363-930c-55566eeba914" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13536" + ], + "x-ms-correlation-request-id": [ + "0ea30f2d-bbfd-4aa4-a938-30cdaf19a45e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185613Z:0ea30f2d-bbfd-4aa4-a938-30cdaf19a45e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "49a48281-4623-4a76-8863-e7ead6f7fe32" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13535" + ], + "x-ms-correlation-request-id": [ + "eb1e13e4-5d2b-491c-9f91-a3cf1383b269" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185614Z:eb1e13e4-5d2b-491c-9f91-a3cf1383b269" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "957ddb27-4950-4b37-919d-510848c357ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13534" + ], + "x-ms-correlation-request-id": [ + "0a96aeee-7cde-4535-babd-3a130b148c72" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185614Z:0a96aeee-7cde-4535-babd-3a130b148c72" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5ba4c1c-35a3-4caf-ba06-5c40833bb4f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13533" + ], + "x-ms-correlation-request-id": [ + "35cc3c5b-61dc-49bc-8c57-623a692ca427" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185614Z:35cc3c5b-61dc-49bc-8c57-623a692ca427" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9d0f8bbe-6bff-45e8-b5e9-041135caa6f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13532" + ], + "x-ms-correlation-request-id": [ + "5d029b9f-feae-4fec-9005-cf0578cc968d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185614Z:5d029b9f-feae-4fec-9005-cf0578cc968d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8116ecf4-94f6-4ec4-b9a1-fc86e56d727f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13531" + ], + "x-ms-correlation-request-id": [ + "8571c349-55f3-4c93-a132-8b0afde610ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185614Z:8571c349-55f3-4c93-a132-8b0afde610ba" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "63eb2a11-fdd0-4439-b782-a3bf0b8ea459" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13530" + ], + "x-ms-correlation-request-id": [ + "7b88c5e0-01f9-404b-9cb5-6af7959c6296" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185615Z:7b88c5e0-01f9-404b-9cb5-6af7959c6296" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "994e03ad-5105-42de-adae-646f9b83bf29" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13529" + ], + "x-ms-correlation-request-id": [ + "46ad187a-cd01-4d2d-9783-84e3cbdf4f01" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185615Z:46ad187a-cd01-4d2d-9783-84e3cbdf4f01" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f5dd0323-002e-4fd3-872f-83f82a4182f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13528" + ], + "x-ms-correlation-request-id": [ + "abdb09df-0674-473a-bef9-a61302f25e19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185615Z:abdb09df-0674-473a-bef9-a61302f25e19" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "763f1700-109e-4d2f-b755-ab40d484fe39" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13527" + ], + "x-ms-correlation-request-id": [ + "2d724234-ce64-4982-af31-8bf4024e609a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185615Z:2d724234-ce64-4982-af31-8bf4024e609a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d9c3e66d-6432-4abc-a883-657f1f03012b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13526" + ], + "x-ms-correlation-request-id": [ + "a16ef4c8-55c6-47c3-a519-2f1c41309281" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185616Z:a16ef4c8-55c6-47c3-a519-2f1c41309281" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7c9db9f5-8044-42f2-a6bd-b8a6abf816f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13525" + ], + "x-ms-correlation-request-id": [ + "43c72417-b938-4777-a0ad-99b0f1829d0d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185616Z:43c72417-b938-4777-a0ad-99b0f1829d0d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a85a4af3-a654-46ff-b430-aa49818b9130" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13524" + ], + "x-ms-correlation-request-id": [ + "ee98aa50-ef94-4729-9d9e-d853505fd673" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185616Z:ee98aa50-ef94-4729-9d9e-d853505fd673" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cffdf298-4511-4167-ae5f-b036b172200c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13523" + ], + "x-ms-correlation-request-id": [ + "e29cde43-331f-40bd-9527-e76535824fe7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185616Z:e29cde43-331f-40bd-9527-e76535824fe7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9adbcdec-91ab-4ca0-8431-9535092c8967" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13522" + ], + "x-ms-correlation-request-id": [ + "acd606ea-a067-41f0-a7ef-48c64dd45368" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185617Z:acd606ea-a067-41f0-a7ef-48c64dd45368" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c12710e6-abe2-49e6-8379-cc7cdee7b1be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13521" + ], + "x-ms-correlation-request-id": [ + "22cac68c-e135-4212-98b8-b180c4d6c7cf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185617Z:22cac68c-e135-4212-98b8-b180c4d6c7cf" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "732dbc24-5936-4161-9892-09fb1f045d88" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13520" + ], + "x-ms-correlation-request-id": [ + "ea57c0d3-9a84-4d37-a12f-ca3d8a44e129" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185617Z:ea57c0d3-9a84-4d37-a12f-ca3d8a44e129" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d1033b34-2913-4beb-a5c1-c92315ac1f91" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13519" + ], + "x-ms-correlation-request-id": [ + "696ad728-77d6-4f60-9144-0578c7f828da" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185617Z:696ad728-77d6-4f60-9144-0578c7f828da" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "afbaa23e-cfdf-4d6f-b70e-fd124f9f784b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13518" + ], + "x-ms-correlation-request-id": [ + "213c7fc9-5a39-476c-a1b2-e1b9b66347d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185618Z:213c7fc9-5a39-476c-a1b2-e1b9b66347d7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "18e33cae-3888-40b1-a074-4371298d3d87" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13517" + ], + "x-ms-correlation-request-id": [ + "ba80f9e3-aae3-4ee9-a1c0-2a3f138c1972" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185618Z:ba80f9e3-aae3-4ee9-a1c0-2a3f138c1972" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "55b0ccf0-c6e6-4422-967d-8ff5f69cd6c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13516" + ], + "x-ms-correlation-request-id": [ + "df507b3d-8444-481d-b6e2-4c6985931cb7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185618Z:df507b3d-8444-481d-b6e2-4c6985931cb7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "29de41fd-005d-4786-b322-24d91d47d9e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13515" + ], + "x-ms-correlation-request-id": [ + "eadeecca-7da0-43ff-bb36-cfb85c1660e9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185618Z:eadeecca-7da0-43ff-bb36-cfb85c1660e9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "450422a6-a742-44ae-9ec3-b18785948c5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13514" + ], + "x-ms-correlation-request-id": [ + "5afa4777-de54-42e4-8d6d-05444fe2866a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185618Z:5afa4777-de54-42e4-8d6d-05444fe2866a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "33b3ea6e-3d95-4cdd-aae5-3539809180be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13513" + ], + "x-ms-correlation-request-id": [ + "0c654eae-a5f7-4478-90f3-5d74d9597866" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185619Z:0c654eae-a5f7-4478-90f3-5d74d9597866" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "99b235b4-6c4d-42f1-bbe2-ef38c514126b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13512" + ], + "x-ms-correlation-request-id": [ + "354465f2-47e6-4cd4-b73b-18c6c7a78b23" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185619Z:354465f2-47e6-4cd4-b73b-18c6c7a78b23" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fee66789-b9f0-410a-9b37-4a9e4359cbe3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13511" + ], + "x-ms-correlation-request-id": [ + "1c182abc-4eb9-42f8-a951-166131ef9a06" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185619Z:1c182abc-4eb9-42f8-a951-166131ef9a06" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0cebf119-79ab-47ef-8b4c-005649dcd6e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13510" + ], + "x-ms-correlation-request-id": [ + "0776c253-75aa-40b1-ac37-d63f7dc10165" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185619Z:0776c253-75aa-40b1-ac37-d63f7dc10165" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5c6602b3-7542-4a78-b59b-f4ffa47af3d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13509" + ], + "x-ms-correlation-request-id": [ + "d14955ae-9805-48d7-a2e9-607aa12a2908" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185620Z:d14955ae-9805-48d7-a2e9-607aa12a2908" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2bff8b5b-218e-4e2c-8573-698a21756960" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13508" + ], + "x-ms-correlation-request-id": [ + "2f2a1b04-58c9-4ab7-8ec9-56acbf45be70" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185620Z:2f2a1b04-58c9-4ab7-8ec9-56acbf45be70" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d0dbc51-c498-421d-97b3-f13afea8dd89" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13507" + ], + "x-ms-correlation-request-id": [ + "5d8d23ef-ae67-46a6-a763-a50b355627d3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185620Z:5d8d23ef-ae67-46a6-a763-a50b355627d3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a5270f65-3c1f-4816-bcc6-67c569451612" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13506" + ], + "x-ms-correlation-request-id": [ + "6558b9fc-4058-479f-8e73-a8ee124f3617" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185620Z:6558b9fc-4058-479f-8e73-a8ee124f3617" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "00d44fa6-5a82-4f4a-a3c5-e98f08070ad8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13505" + ], + "x-ms-correlation-request-id": [ + "ebe27adb-2290-452b-be31-02e9fdf50726" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185620Z:ebe27adb-2290-452b-be31-02e9fdf50726" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e7f83611-d310-4dc9-bc63-436fc61a039a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13504" + ], + "x-ms-correlation-request-id": [ + "865e3e76-8ec5-4d0d-a10a-ee13ecd325fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185621Z:865e3e76-8ec5-4d0d-a10a-ee13ecd325fd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "93db9118-213f-4497-8d3a-96a83db65d26" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13503" + ], + "x-ms-correlation-request-id": [ + "4e74ca6a-e96d-446c-8b15-fc0f8b7db27b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185621Z:4e74ca6a-e96d-446c-8b15-fc0f8b7db27b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5b13e789-2abf-4682-bf1f-470da1fba665" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13502" + ], + "x-ms-correlation-request-id": [ + "8d440d15-879c-446d-a5af-9dc18f8902c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185621Z:8d440d15-879c-446d-a5af-9dc18f8902c3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cc14edb4-4a2d-423d-8109-52d52b11aefb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13501" + ], + "x-ms-correlation-request-id": [ + "a63b3164-1e00-45ef-9743-dfddac99eb1e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185621Z:a63b3164-1e00-45ef-9743-dfddac99eb1e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d9a2da68-7230-41ed-8a22-dbe2f0bb8000" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13500" + ], + "x-ms-correlation-request-id": [ + "dc547e1e-0af4-4830-828e-1a230e8ef908" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185622Z:dc547e1e-0af4-4830-828e-1a230e8ef908" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2bc6598f-9640-4acb-bf7d-80ed4cd3e74b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13499" + ], + "x-ms-correlation-request-id": [ + "f472033d-2a23-4035-98a9-daea46b2fbc0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185622Z:f472033d-2a23-4035-98a9-daea46b2fbc0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aa0a5f57-7b48-4ba0-911e-65198f170fc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13498" + ], + "x-ms-correlation-request-id": [ + "2e2aaea1-013c-45bf-9d8e-25e89fc5da38" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185622Z:2e2aaea1-013c-45bf-9d8e-25e89fc5da38" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f7006096-ec3e-43ae-a53a-ca2a478789a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13497" + ], + "x-ms-correlation-request-id": [ + "d4308eb5-cb9e-41f7-9c62-522f7f388477" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185622Z:d4308eb5-cb9e-41f7-9c62-522f7f388477" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d4fef0bd-c2f7-494a-a441-c33057749159" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13496" + ], + "x-ms-correlation-request-id": [ + "db7bb7be-3a3c-4e62-8efb-768c95e66620" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185623Z:db7bb7be-3a3c-4e62-8efb-768c95e66620" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3221eff1-c982-4271-9914-4464234fb542" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13495" + ], + "x-ms-correlation-request-id": [ + "72f834a3-2705-4883-98ac-320b8e6dd073" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185623Z:72f834a3-2705-4883-98ac-320b8e6dd073" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f341a81c-5620-437a-89ed-501282c4ed53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13494" + ], + "x-ms-correlation-request-id": [ + "688843d4-0ab3-40db-a55e-a5947e082d19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185623Z:688843d4-0ab3-40db-a55e-a5947e082d19" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5398e901-cb3c-4657-b6db-57ffef82fe3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13493" + ], + "x-ms-correlation-request-id": [ + "244beb81-9c8e-40f2-9996-2993eaf6f74f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185623Z:244beb81-9c8e-40f2-9996-2993eaf6f74f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "99f87b10-c1cc-4110-941c-a3f69dc56d91" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13492" + ], + "x-ms-correlation-request-id": [ + "069b7f41-0a13-494e-9319-fc8189437405" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185623Z:069b7f41-0a13-494e-9319-fc8189437405" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1043c1c1-885d-4b86-bcf9-84d90c5bf995" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13491" + ], + "x-ms-correlation-request-id": [ + "914d5083-b21e-4d1f-9b4b-297a002eca74" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185624Z:914d5083-b21e-4d1f-9b4b-297a002eca74" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fbad12d8-c74d-43ba-9ac7-efa5675b3d1c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13490" + ], + "x-ms-correlation-request-id": [ + "6ec6c391-abf8-47f7-9d10-07ca64b65ca5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185624Z:6ec6c391-abf8-47f7-9d10-07ca64b65ca5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7a4982cf-e3f7-4319-b1da-4015d9f5923d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13489" + ], + "x-ms-correlation-request-id": [ + "9f1c4ee5-6d7a-44a0-8bb6-3285ce28bb21" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185624Z:9f1c4ee5-6d7a-44a0-8bb6-3285ce28bb21" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1a3af135-348e-4242-b507-f315e8d90a29" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13488" + ], + "x-ms-correlation-request-id": [ + "39c830b1-63f8-41ce-8c37-38ef14bd7d0c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185624Z:39c830b1-63f8-41ce-8c37-38ef14bd7d0c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a98379d3-382d-41f4-baa4-3572bfe3e2fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13487" + ], + "x-ms-correlation-request-id": [ + "7e1896fa-7a32-4c68-8118-46fb54c53436" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185625Z:7e1896fa-7a32-4c68-8118-46fb54c53436" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "eea01616-d3d4-44d9-9cb4-dcaaea35b599" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13486" + ], + "x-ms-correlation-request-id": [ + "f4050894-1c71-48ce-bace-85da3342d700" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185625Z:f4050894-1c71-48ce-bace-85da3342d700" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6216cc55-b0e4-46f0-9885-0ad21d3ecf78" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13485" + ], + "x-ms-correlation-request-id": [ + "8217db4f-0a09-4339-b9a7-db93a7efa0a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185625Z:8217db4f-0a09-4339-b9a7-db93a7efa0a7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "50bbad1c-3f12-4383-8e92-1b744009c8d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13484" + ], + "x-ms-correlation-request-id": [ + "2d66ddb5-8cdd-4ef9-8b9a-5ac09ede96a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185625Z:2d66ddb5-8cdd-4ef9-8b9a-5ac09ede96a4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f870523b-9f0f-423b-b5e7-d552f720f2c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13483" + ], + "x-ms-correlation-request-id": [ + "adeda76d-0a1d-4749-aa4d-855ea85f479a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185626Z:adeda76d-0a1d-4749-aa4d-855ea85f479a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "34ccab74-deda-42e7-86fe-8d07c772e040" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13482" + ], + "x-ms-correlation-request-id": [ + "0991b3bc-5ebe-4629-b9e1-e2b8cf47ac27" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185626Z:0991b3bc-5ebe-4629-b9e1-e2b8cf47ac27" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f0c648fc-3b7e-49f6-9804-a02e49f99aa3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13481" + ], + "x-ms-correlation-request-id": [ + "700be86d-d4e0-4c54-b1ff-69475c8b6188" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185626Z:700be86d-d4e0-4c54-b1ff-69475c8b6188" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "497a9eb8-d35f-4604-b39f-933c829192c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13480" + ], + "x-ms-correlation-request-id": [ + "fd9486e0-1eb5-41bc-a718-fee9da03d3ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185626Z:fd9486e0-1eb5-41bc-a718-fee9da03d3ac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "97c91874-2585-414d-94b3-5cc2520c9430" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13479" + ], + "x-ms-correlation-request-id": [ + "73ae2f37-ea69-4d88-b96c-0b047fb69229" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185627Z:73ae2f37-ea69-4d88-b96c-0b047fb69229" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4de0e536-40a5-4e89-8dfd-821fa5060504" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13478" + ], + "x-ms-correlation-request-id": [ + "53436604-48d4-4387-8758-1958e769be6a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185627Z:53436604-48d4-4387-8758-1958e769be6a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ce539cb7-284d-4916-9005-995012e8b261" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13477" + ], + "x-ms-correlation-request-id": [ + "0c08ef8c-a4ea-47cf-9000-d56d12dfd72d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185627Z:0c08ef8c-a4ea-47cf-9000-d56d12dfd72d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0859c6a0-0184-4182-b42a-74c856061a1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13476" + ], + "x-ms-correlation-request-id": [ + "3070f221-b10b-4a4c-8c89-fea22e4d9cac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185627Z:3070f221-b10b-4a4c-8c89-fea22e4d9cac" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "756eb632-f426-434b-bfe1-ce3821537782" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13475" + ], + "x-ms-correlation-request-id": [ + "56ab8638-5215-4f47-8917-6368dd1f827c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185627Z:56ab8638-5215-4f47-8917-6368dd1f827c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d12d1b18-0bfc-4979-967d-88a3e7fe0c2b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13474" + ], + "x-ms-correlation-request-id": [ + "faf29411-d5ea-4a5d-b167-5b7e38a9574a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185628Z:faf29411-d5ea-4a5d-b167-5b7e38a9574a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "da84cc2d-370b-4bd8-8a5d-d9113ca49fa9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13473" + ], + "x-ms-correlation-request-id": [ + "0e56dd7b-79cd-4755-9c80-3e15a482d81c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185628Z:0e56dd7b-79cd-4755-9c80-3e15a482d81c" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c2b67be-53ad-40d3-b654-67c0ff98f26c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13472" + ], + "x-ms-correlation-request-id": [ + "e05faf69-0cd4-44ab-97b3-1f59e6090b23" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185628Z:e05faf69-0cd4-44ab-97b3-1f59e6090b23" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "03c4f2a2-1235-4382-97da-3861ae24e39f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13471" + ], + "x-ms-correlation-request-id": [ + "24225656-d398-4dd4-8d90-0ca9fcafb6c4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185628Z:24225656-d398-4dd4-8d90-0ca9fcafb6c4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ad6e2138-5e56-42b0-9450-b25807d7d83c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13470" + ], + "x-ms-correlation-request-id": [ + "9b731e7c-1e8f-4a12-b7b6-b2d508bc89a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185629Z:9b731e7c-1e8f-4a12-b7b6-b2d508bc89a2" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8522f6c0-d722-4184-92d7-ee4d55021de7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13469" + ], + "x-ms-correlation-request-id": [ + "91eda06a-5e67-44cb-b612-33ddf35240e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185629Z:91eda06a-5e67-44cb-b612-33ddf35240e7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "aad9265b-2023-40d8-b597-c747ec7cde23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13468" + ], + "x-ms-correlation-request-id": [ + "bbc3baa8-bf2c-4448-a50f-bc51e9c0cb81" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185629Z:bbc3baa8-bf2c-4448-a50f-bc51e9c0cb81" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ec905319-141c-4cd3-93c5-d7e122dd65c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13467" + ], + "x-ms-correlation-request-id": [ + "5e7f594c-5b39-446e-8195-e32200195545" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185629Z:5e7f594c-5b39-446e-8195-e32200195545" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "087db49b-7b83-4d73-8027-fe659aac2a1d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13466" + ], + "x-ms-correlation-request-id": [ + "06ac53bd-b3de-46ea-b239-b3139be2aa20" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185629Z:06ac53bd-b3de-46ea-b239-b3139be2aa20" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dcdd1cf1-3dab-45ca-8f2c-e86bef836af9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13465" + ], + "x-ms-correlation-request-id": [ + "36c76f9e-d276-43dd-b49a-f54d2c1f9c1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185630Z:36c76f9e-d276-43dd-b49a-f54d2c1f9c1b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "70714a8b-bdf2-4061-900e-962b7df3381c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13464" + ], + "x-ms-correlation-request-id": [ + "2e27e905-f109-4406-a878-85fc44f21f0b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185630Z:2e27e905-f109-4406-a878-85fc44f21f0b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "67b3109e-1d19-451b-9e0d-6f2eb77d9d6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13463" + ], + "x-ms-correlation-request-id": [ + "beb801a6-9d63-4afc-a048-d4883d791b56" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185630Z:beb801a6-9d63-4afc-a048-d4883d791b56" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "532c8e11-c877-49db-9efd-054ead7506f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13462" + ], + "x-ms-correlation-request-id": [ + "5d8395ac-92d5-4cf7-992a-640361db439e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185630Z:5d8395ac-92d5-4cf7-992a-640361db439e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a49e095f-b2ce-43ef-adc5-a67cd900f81b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13461" + ], + "x-ms-correlation-request-id": [ + "e00b5991-e695-4cfa-a214-09ad4832082a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185630Z:e00b5991-e695-4cfa-a214-09ad4832082a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b8963916-e5b0-4609-8ded-bfd838af4030" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13460" + ], + "x-ms-correlation-request-id": [ + "211a3b2c-e1f8-4f6c-805b-b72343799168" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185631Z:211a3b2c-e1f8-4f6c-805b-b72343799168" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8ebe23d8-4c9b-4000-82a7-c20857801c40" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13459" + ], + "x-ms-correlation-request-id": [ + "d3835cf2-fcc8-43de-b82d-351b4280e11f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185631Z:d3835cf2-fcc8-43de-b82d-351b4280e11f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2e1f6daf-1b3a-430f-8eb2-aee235aace30" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13458" + ], + "x-ms-correlation-request-id": [ + "730de737-e09a-4931-9389-63eff61e0da9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185631Z:730de737-e09a-4931-9389-63eff61e0da9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b214dff8-e80b-47a4-8fd5-d5009ad2365b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13457" + ], + "x-ms-correlation-request-id": [ + "55a5bff1-57b9-4d8f-bc2f-b1dcbc7e2ec3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185631Z:55a5bff1-57b9-4d8f-bc2f-b1dcbc7e2ec3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5a55ef38-3480-478b-a14d-d26d99e39ad7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13456" + ], + "x-ms-correlation-request-id": [ + "32424fa9-d1ad-419d-8e57-be326710e509" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185632Z:32424fa9-d1ad-419d-8e57-be326710e509" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7f951f93-2273-4e63-afb4-5b6962b85e28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13455" + ], + "x-ms-correlation-request-id": [ + "b23fa016-8d48-41cf-848a-92bebbbd3ed5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185632Z:b23fa016-8d48-41cf-848a-92bebbbd3ed5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "be41e484-eaba-4b7c-a73a-37092f3eaf3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13454" + ], + "x-ms-correlation-request-id": [ + "b8263933-013e-4aa5-8322-83268bcd31e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185632Z:b8263933-013e-4aa5-8322-83268bcd31e3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8cf28556-0b66-4584-ac32-8708326d5543" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13453" + ], + "x-ms-correlation-request-id": [ + "48484b5f-f6fe-45c0-88e5-dda8c1c87c5f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185632Z:48484b5f-f6fe-45c0-88e5-dda8c1c87c5f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1cee8bf7-2c50-4393-8848-6b67156eb581" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13452" + ], + "x-ms-correlation-request-id": [ + "60f5a0a0-7041-4a26-a25d-ff5aad8add60" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185633Z:60f5a0a0-7041-4a26-a25d-ff5aad8add60" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "944a7b30-9b86-491f-a795-45a6ddbdd0d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13451" + ], + "x-ms-correlation-request-id": [ + "4d71d671-954e-4d75-a6a6-af85c0f66170" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185633Z:4d71d671-954e-4d75-a6a6-af85c0f66170" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9dbece50-538a-4451-900f-97b5569efc71" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13450" + ], + "x-ms-correlation-request-id": [ + "38184b6a-4b20-4f8c-a68d-844599b811c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185633Z:38184b6a-4b20-4f8c-a68d-844599b811c1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "947bae91-aaad-4a78-9ea3-fb225f1a1b67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13449" + ], + "x-ms-correlation-request-id": [ + "9babefc4-b71d-48c9-babb-fa93d15af4fe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185633Z:9babefc4-b71d-48c9-babb-fa93d15af4fe" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "69d11f55-abf7-4060-b21f-ed25269548fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13448" + ], + "x-ms-correlation-request-id": [ + "f31762b0-ad76-4ac3-b9c7-95e0297f653d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185633Z:f31762b0-ad76-4ac3-b9c7-95e0297f653d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e975142f-3c50-429a-9203-ce89a4132cfc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13447" + ], + "x-ms-correlation-request-id": [ + "f65eee32-c659-486b-a286-d9c3e7ca5a37" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185634Z:f65eee32-c659-486b-a286-d9c3e7ca5a37" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "20a5aa98-4046-4c87-b78e-47567791cf24" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13446" + ], + "x-ms-correlation-request-id": [ + "fedadeb7-213b-444b-99da-6bdb1f945699" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185634Z:fedadeb7-213b-444b-99da-6bdb1f945699" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d465ed5d-5070-4878-ab73-cb15d9ef2d01" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13445" + ], + "x-ms-correlation-request-id": [ + "b59cd980-4116-41e3-962b-10ea3a4f27fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185634Z:b59cd980-4116-41e3-962b-10ea3a4f27fb" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dfabc746-a64d-4012-98ed-b2596bd8752d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13444" + ], + "x-ms-correlation-request-id": [ + "e1fd0d4f-4138-4912-baf8-3b42a9039f85" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185634Z:e1fd0d4f-4138-4912-baf8-3b42a9039f85" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d811128e-1158-4cd1-bde5-a07ab2593986" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13443" + ], + "x-ms-correlation-request-id": [ + "1defbede-c0a1-42b3-8850-638db44ddd47" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185635Z:1defbede-c0a1-42b3-8850-638db44ddd47" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8e42bdb6-a34f-42c6-8a1a-778d76ac5479" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13442" + ], + "x-ms-correlation-request-id": [ + "ff1a40a6-57cc-42ca-a295-c1ed28c10c8b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185635Z:ff1a40a6-57cc-42ca-a295-c1ed28c10c8b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7faaefa7-e956-46a7-aee1-50232b9ef4d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13441" + ], + "x-ms-correlation-request-id": [ + "a791b986-fe61-47e1-9571-ac478f120fa9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185635Z:a791b986-fe61-47e1-9571-ac478f120fa9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "11138964-70ff-47b8-9e17-274f02b283b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13440" + ], + "x-ms-correlation-request-id": [ + "b4b516a3-a4e3-4e76-8504-9d3538bdeab3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185635Z:b4b516a3-a4e3-4e76-8504-9d3538bdeab3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a73e4353-876d-43e9-bc7d-4123650d1205" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13439" + ], + "x-ms-correlation-request-id": [ + "43268e38-c7fc-41b6-8e2b-5ef9c3909cc9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185636Z:43268e38-c7fc-41b6-8e2b-5ef9c3909cc9" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ba4516c9-e599-40bc-a16d-d59caa173593" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13438" + ], + "x-ms-correlation-request-id": [ + "b2dcec3b-57cf-44d7-8ffc-f591d8109667" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185636Z:b2dcec3b-57cf-44d7-8ffc-f591d8109667" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8f8796fc-1356-4af5-8410-ab1c74efe89d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13437" + ], + "x-ms-correlation-request-id": [ + "34dfdf37-8eb8-40ab-adb3-a479f442e67a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185636Z:34dfdf37-8eb8-40ab-adb3-a479f442e67a" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3b1973c7-c2a9-47bc-a137-f6e7b405cd8d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13436" + ], + "x-ms-correlation-request-id": [ + "43c84061-1aac-461a-801b-f88eb93f8f76" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185636Z:43c84061-1aac-461a-801b-f88eb93f8f76" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d16e9e87-fd74-4924-87fa-9c5970aa2397" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13435" + ], + "x-ms-correlation-request-id": [ + "e303b57f-64ab-4121-b452-d6254ce246af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185636Z:e303b57f-64ab-4121-b452-d6254ce246af" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8813956e-b695-4e66-8a04-0431ea6883ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13434" + ], + "x-ms-correlation-request-id": [ + "fa52cece-e853-4b2d-a9b6-78c8d1aaa62f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185637Z:fa52cece-e853-4b2d-a9b6-78c8d1aaa62f" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dae3e6e1-e3a0-4c23-a1f9-73e06be1eb9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13433" + ], + "x-ms-correlation-request-id": [ + "03652708-ae24-451b-bd61-11f5dcbe7a55" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185637Z:03652708-ae24-451b-bd61-11f5dcbe7a55" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "84d40dd5-9fdc-4a51-b5e5-e1179d10a0af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13432" + ], + "x-ms-correlation-request-id": [ + "c1b8b7da-c81a-4daa-952d-8d9388302510" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185637Z:c1b8b7da-c81a-4daa-952d-8d9388302510" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "237d1b0d-8ad0-4c00-893b-747f982056f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13431" + ], + "x-ms-correlation-request-id": [ + "6c444f5f-f46d-42a3-9868-8cd4a739f043" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185637Z:6c444f5f-f46d-42a3-9868-8cd4a739f043" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d0f98625-8b68-4e16-a9c2-231f25877d02" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13430" + ], + "x-ms-correlation-request-id": [ + "ae045849-2bba-425b-a4da-6beef0513209" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185638Z:ae045849-2bba-425b-a4da-6beef0513209" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "008da5e4-71f2-4521-9d3e-82359a540a11" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13429" + ], + "x-ms-correlation-request-id": [ + "54675250-ed0d-40d6-adfa-64d95a306ead" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185638Z:54675250-ed0d-40d6-adfa-64d95a306ead" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2ba37f1c-b790-451c-939a-86fd67c08801" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13428" + ], + "x-ms-correlation-request-id": [ + "be15637d-4622-40b1-a27f-985d069cb20b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185638Z:be15637d-4622-40b1-a27f-985d069cb20b" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "72ffd1f0-9426-464b-84a7-922327ea9ca8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13427" + ], + "x-ms-correlation-request-id": [ + "7cd626be-2e6a-468a-80bf-87c0006f0771" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185638Z:7cd626be-2e6a-468a-80bf-87c0006f0771" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "dccf0c3e-4822-426d-a6aa-6d8f17d27929" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13426" + ], + "x-ms-correlation-request-id": [ + "1171d6cd-ac2c-4475-8307-c0a0d744d2f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185638Z:1171d6cd-ac2c-4475-8307-c0a0d744d2f1" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d4cd1f39-141e-4716-ae97-3ef28c753faf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13425" + ], + "x-ms-correlation-request-id": [ + "ecc636df-c60c-4438-8346-0cfc19647f08" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185639Z:ecc636df-c60c-4438-8346-0cfc19647f08" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "9c71fbe1-7ac2-4bd9-9146-ff86287777a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13424" + ], + "x-ms-correlation-request-id": [ + "b26985b6-2884-4cd0-bd63-8601b91a8de3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185639Z:b26985b6-2884-4cd0-bd63-8601b91a8de3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4686d2e9-7fe9-4945-a8b9-004488ef6afd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13423" + ], + "x-ms-correlation-request-id": [ + "f5b4c0fb-48a0-48ff-be0e-062f06fd8b2d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185639Z:f5b4c0fb-48a0-48ff-be0e-062f06fd8b2d" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1e1afa86-49f1-4dd8-b460-d2cbde4d8645" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13422" + ], + "x-ms-correlation-request-id": [ + "7d3f35dd-266f-4c59-847d-39777553b5c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185639Z:7d3f35dd-266f-4c59-847d-39777553b5c0" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4a28004e-c709-49bd-afc5-ffb273cccd1b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13421" + ], + "x-ms-correlation-request-id": [ + "a7781b8b-5296-445f-9161-272b8da5a474" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185639Z:a7781b8b-5296-445f-9161-272b8da5a474" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "d6c3e08c-00f8-409b-a1cb-64f085ed3380" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13420" + ], + "x-ms-correlation-request-id": [ + "fe9e5889-ffe1-4476-901b-ef30d4330312" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185640Z:fe9e5889-ffe1-4476-901b-ef30d4330312" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fc3e152f-c8cc-4062-98fb-f34e5f72c313" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13419" + ], + "x-ms-correlation-request-id": [ + "71abe7ef-cec0-4178-9357-594d0d72a4b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185640Z:71abe7ef-cec0-4178-9357-594d0d72a4b3" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "94b56823-c08d-422b-82e7-a6c33880fe16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13418" + ], + "x-ms-correlation-request-id": [ + "d9e445df-74c2-4f7c-b381-043bcb1be173" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185640Z:d9e445df-74c2-4f7c-b381-043bcb1be173" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "01345c58-dcaf-487e-b087-8066d1b45186" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13417" + ], + "x-ms-correlation-request-id": [ + "831ba6c3-4ee9-47d0-a0b9-2e6fcc1ae017" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185640Z:831ba6c3-4ee9-47d0-a0b9-2e6fcc1ae017" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ea26fe1e-1533-467f-9bcf-f66036f6ce95" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13416" + ], + "x-ms-correlation-request-id": [ + "2c5faa77-f7b7-44dd-a67f-b3ea4bb003ea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185641Z:2c5faa77-f7b7-44dd-a67f-b3ea4bb003ea" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "f4246c2c-4e90-425a-8d50-35cf639dd1fd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13415" + ], + "x-ms-correlation-request-id": [ + "e0b97123-5e7d-4355-9a34-b528ff3922bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185641Z:e0b97123-5e7d-4355-9a34-b528ff3922bd" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "59992dd8-5402-4591-93f9-4550913793df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13414" + ], + "x-ms-correlation-request-id": [ + "e36d27ef-106a-4ed3-af3d-83e2a4fa57d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185641Z:e36d27ef-106a-4ed3-af3d-83e2a4fa57d5" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b7924b60-e4d3-43d0-86a2-b20caed4dde7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13413" + ], + "x-ms-correlation-request-id": [ + "5a7e9e5c-fc99-4a6d-8457-d173dcd1d90e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185641Z:5a7e9e5c-fc99-4a6d-8457-d173dcd1d90e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "52ebf2b9-5ab7-49b8-9591-eaffb1413828" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13412" + ], + "x-ms-correlation-request-id": [ + "83a4145c-5767-464c-a3af-c1a82fdb66ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185641Z:83a4145c-5767-464c-a3af-c1a82fdb66ff" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "18019b2b-de0a-46e8-ba0d-876439a72144" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13411" + ], + "x-ms-correlation-request-id": [ + "66dad257-92e4-4d00-9f90-07964b78b6f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185642Z:66dad257-92e4-4d00-9f90-07964b78b6f4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "e6a0ad16-24fc-4b76-8955-0a7e70232b5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13410" + ], + "x-ms-correlation-request-id": [ + "c47e80aa-770d-4ad2-85f7-0d281f827609" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185642Z:c47e80aa-770d-4ad2-85f7-0d281f827609" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7ba1eb71-15c6-4c74-95d5-7b7042eba5e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13409" + ], + "x-ms-correlation-request-id": [ + "536add34-35ba-491f-8b13-4a609904ede7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185642Z:536add34-35ba-491f-8b13-4a609904ede7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "579f1b67-a9f7-408d-be55-3a11807c341c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13408" + ], + "x-ms-correlation-request-id": [ + "67108d58-4477-4b07-9aab-360d41a5ebd7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185642Z:67108d58-4477-4b07-9aab-360d41a5ebd7" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "121691d4-427a-4901-8c3c-37c70ef73038" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13407" + ], + "x-ms-correlation-request-id": [ + "4007d1ff-fc1c-4a03-9213-3cce576d1328" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185642Z:4007d1ff-fc1c-4a03-9213-3cce576d1328" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fd289d1b-eb3b-4b52-abbe-9c933bcaf41a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13406" + ], + "x-ms-correlation-request-id": [ + "6fc00c9d-b2f6-4ac8-bb54-c423a10535e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185643Z:6fc00c9d-b2f6-4ac8-bb54-c423a10535e4" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4c5feb1d-16d0-4844-a163-bb03d941a2ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13405" + ], + "x-ms-correlation-request-id": [ + "2a0ffa35-3ac3-4def-b5ca-a795764fc093" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185643Z:2a0ffa35-3ac3-4def-b5ca-a795764fc093" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/9953eed8-2ec1-4551-b35c-8038659bb887?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NTNlZWQ4LTJlYzEtNDU1MS1iMzVjLTgwMzg2NTliYjg4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T19:56:10.9547927+01:00\",\r\n \"endTime\": \"2017-11-06T19:56:43.8297612+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9953eed8-2ec1-4551-b35c-8038659bb887\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "576f1dee-a2e0-4421-8713-fadd53dceb65" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13404" + ], + "x-ms-correlation-request-id": [ + "1c4eb555-94d6-4f73-ab1e-39fb447f749e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185643Z:1c4eb555-94d6-4f73-ab1e-39fb447f749e" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourcegroups/crptestps6837?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczY4Mzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2e5895c9-5426-470c-b410-f6ee8c436552" + ], + "x-ms-correlation-request-id": [ + "2e5895c9-5426-470c-b410-f6ee8c436552" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185648Z:2e5895c9-5426-470c-b410-f6ee8c436552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "c6756925-9c01-4eba-a460-e5e6eca57ea6" + ], + "x-ms-correlation-request-id": [ + "c6756925-9c01-4eba-a460-e5e6eca57ea6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185648Z:c6756925-9c01-4eba-a460-e5e6eca57ea6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:56:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "23e3fc83-98dd-4ce1-9100-c0688439acc1" + ], + "x-ms-correlation-request-id": [ + "23e3fc83-98dd-4ce1-9100-c0688439acc1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185704Z:23e3fc83-98dd-4ce1-9100-c0688439acc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:57:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "64cd4d35-191a-4621-b6a4-3b876458dcc4" + ], + "x-ms-correlation-request-id": [ + "64cd4d35-191a-4621-b6a4-3b876458dcc4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185719Z:64cd4d35-191a-4621-b6a4-3b876458dcc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:57:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "d3c4db1d-c53d-40fa-8558-c32262086cbd" + ], + "x-ms-correlation-request-id": [ + "d3c4db1d-c53d-40fa-8558-c32262086cbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185735Z:d3c4db1d-c53d-40fa-8558-c32262086cbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:57:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "60954250-6306-4675-9cc0-fd159fc23bd5" + ], + "x-ms-correlation-request-id": [ + "60954250-6306-4675-9cc0-fd159fc23bd5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185750Z:60954250-6306-4675-9cc0-fd159fc23bd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:57:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "11915099-facd-4e47-b8c9-b1128958fe22" + ], + "x-ms-correlation-request-id": [ + "11915099-facd-4e47-b8c9-b1128958fe22" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185805Z:11915099-facd-4e47-b8c9-b1128958fe22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:58:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "d4a039e4-0235-43cb-8750-737de559c373" + ], + "x-ms-correlation-request-id": [ + "d4a039e4-0235-43cb-8750-737de559c373" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185821Z:d4a039e4-0235-43cb-8750-737de559c373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:58:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "a496cc2f-3cab-4cf2-a870-5e51718e153b" + ], + "x-ms-correlation-request-id": [ + "a496cc2f-3cab-4cf2-a870-5e51718e153b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185836Z:a496cc2f-3cab-4cf2-a870-5e51718e153b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:58:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "5b6b99b8-22ce-492d-89d7-9b7ab1811b24" + ], + "x-ms-correlation-request-id": [ + "5b6b99b8-22ce-492d-89d7-9b7ab1811b24" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185852Z:5b6b99b8-22ce-492d-89d7-9b7ab1811b24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:58:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "94e7c456-93b6-4e93-98b5-9c4c99e1704a" + ], + "x-ms-correlation-request-id": [ + "94e7c456-93b6-4e93-98b5-9c4c99e1704a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185907Z:94e7c456-93b6-4e93-98b5-9c4c99e1704a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:59:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "b08978bb-f4a2-497e-8c29-c4dac56ae8c4" + ], + "x-ms-correlation-request-id": [ + "b08978bb-f4a2-497e-8c29-c4dac56ae8c4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185923Z:b08978bb-f4a2-497e-8c29-c4dac56ae8c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:59:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "fe32de6f-1955-4f1c-85be-2213ce7bf7a5" + ], + "x-ms-correlation-request-id": [ + "fe32de6f-1955-4f1c-85be-2213ce7bf7a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185938Z:fe32de6f-1955-4f1c-85be-2213ce7bf7a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:59:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "44dcb1a4-6c50-4857-84a9-fb1b76e991d0" + ], + "x-ms-correlation-request-id": [ + "44dcb1a4-6c50-4857-84a9-fb1b76e991d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T185954Z:44dcb1a4-6c50-4857-84a9-fb1b76e991d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 18:59:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "4eb9fcc9-0f84-477c-9f64-cf82d697fd19" + ], + "x-ms-correlation-request-id": [ + "4eb9fcc9-0f84-477c-9f64-cf82d697fd19" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190009Z:4eb9fcc9-0f84-477c-9f64-cf82d697fd19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:00:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "3a021c46-1670-4016-8a2d-27c67af9df71" + ], + "x-ms-correlation-request-id": [ + "3a021c46-1670-4016-8a2d-27c67af9df71" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190024Z:3a021c46-1670-4016-8a2d-27c67af9df71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:00:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "f416d4d7-17e8-471b-8c50-d3902f8e04ab" + ], + "x-ms-correlation-request-id": [ + "f416d4d7-17e8-471b-8c50-d3902f8e04ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190040Z:f416d4d7-17e8-471b-8c50-d3902f8e04ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:00:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "eca8ad0e-2756-41b2-b722-11cf163c0f55" + ], + "x-ms-correlation-request-id": [ + "eca8ad0e-2756-41b2-b722-11cf163c0f55" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190055Z:eca8ad0e-2756-41b2-b722-11cf163c0f55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:00:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "eea3186d-39ef-4d76-a0a3-c8cdc8cfe27b" + ], + "x-ms-correlation-request-id": [ + "eea3186d-39ef-4d76-a0a3-c8cdc8cfe27b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190111Z:eea3186d-39ef-4d76-a0a3-c8cdc8cfe27b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:01:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "610c04bd-9f4d-418f-8cbd-d0b71d2fc69c" + ], + "x-ms-correlation-request-id": [ + "610c04bd-9f4d-418f-8cbd-d0b71d2fc69c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190126Z:610c04bd-9f4d-418f-8cbd-d0b71d2fc69c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:01:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "37053407-4d57-4ecd-bdf5-c6c6d42458c2" + ], + "x-ms-correlation-request-id": [ + "37053407-4d57-4ecd-bdf5-c6c6d42458c2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190142Z:37053407-4d57-4ecd-bdf5-c6c6d42458c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:01:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "6c2a38aa-89a1-4215-b604-4f53fc19a487" + ], + "x-ms-correlation-request-id": [ + "6c2a38aa-89a1-4215-b604-4f53fc19a487" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190157Z:6c2a38aa-89a1-4215-b604-4f53fc19a487" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:01:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "25a36492-6ded-46ae-ab3d-6f0474d53303" + ], + "x-ms-correlation-request-id": [ + "25a36492-6ded-46ae-ab3d-6f0474d53303" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190212Z:25a36492-6ded-46ae-ab3d-6f0474d53303" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:02:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "b42d4175-8419-4b31-bd4d-6a75afb0e659" + ], + "x-ms-correlation-request-id": [ + "b42d4175-8419-4b31-bd4d-6a75afb0e659" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190228Z:b42d4175-8419-4b31-bd4d-6a75afb0e659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:02:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "30983c53-4428-44ad-9ee2-34f0a7b9cf10" + ], + "x-ms-correlation-request-id": [ + "30983c53-4428-44ad-9ee2-34f0a7b9cf10" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190243Z:30983c53-4428-44ad-9ee2-34f0a7b9cf10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:02:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "d659c9db-9409-46b7-853a-5ebbc0f896ef" + ], + "x-ms-correlation-request-id": [ + "d659c9db-9409-46b7-853a-5ebbc0f896ef" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190259Z:d659c9db-9409-46b7-853a-5ebbc0f896ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:02:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "878db589-b4d1-4cf5-bbe6-f065ef9c57a6" + ], + "x-ms-correlation-request-id": [ + "878db589-b4d1-4cf5-bbe6-f065ef9c57a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190314Z:878db589-b4d1-4cf5-bbe6-f065ef9c57a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:03:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2ODM3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yT0RNM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "fb86921a-ae0d-4076-8d14-347c82952b12" + ], + "x-ms-correlation-request-id": [ + "fb86921a-ae0d-4076-8d14-347c82952b12" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190330Z:fb86921a-ae0d-4076-8d14-347c82952b12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:03:29 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionAdvancedLinuxMD_D": [ + "crptestps6837" + ] + }, + "Variables": { + "SubscriptionId": "0d00a9f6-eabe-4083-99ad-383632714f14" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD_ESeries.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD_ESeries.json new file mode 100644 index 000000000000..deb15f537c8e --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests/TestAEMExtensionAdvancedLinuxMD_ESeries.json @@ -0,0 +1,5867 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourcegroups/crptestps298?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298\",\r\n \"name\": \"crptestps298\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "537293e3-7b78-4e90-a4ab-6f6a4ff0263b" + ], + "x-ms-correlation-request-id": [ + "537293e3-7b78-4e90-a4ab-6f6a4ff0263b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190432Z:537293e3-7b78-4e90-a4ab-6f6a4ff0263b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:31 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5230ba5-83af-4367-a85e-4e6daa10af23" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps298' under resource group 'crptestps298' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "17f5b9b9-a416-4566-8709-77b09a48d129" + ], + "x-ms-correlation-request-id": [ + "17f5b9b9-a416-4566-8709-77b09a48d129" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190434Z:17f5b9b9-a416-4566-8709-77b09a48d129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298\",\r\n \"etag\": \"W/\\\"2db3475c-b82e-445a-ab25-73cf0aabb659\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3e9cc7f-1fca-4c63-8b7f-8778c5a9123f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\",\r\n \"etag\": \"W/\\\"2db3475c-b82e-445a-ab25-73cf0aabb659\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5745b650-8334-4b8f-8765-c94d805312f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2db3475c-b82e-445a-ab25-73cf0aabb659\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "430e141b-82ee-458e-a38f-c0dc2e4ed197" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190449Z:430e141b-82ee-458e-a38f-c0dc2e4ed197" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "954ef1f6-efff-4f84-ab57-92c82fa8f0a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298\",\r\n \"etag\": \"W/\\\"2db3475c-b82e-445a-ab25-73cf0aabb659\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3e9cc7f-1fca-4c63-8b7f-8778c5a9123f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\",\r\n \"etag\": \"W/\\\"2db3475c-b82e-445a-ab25-73cf0aabb659\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9df7786a-cdc2-4981-9004-953ed7d3c82f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2db3475c-b82e-445a-ab25-73cf0aabb659\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "4d724e42-07a3-4b3e-b888-9904c2d0affd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190449Z:4d724e42-07a3-4b3e-b888-9904c2d0affd" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c57aa0e8-6fb2-44f5-9bc7-ad65a9952e4d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298\",\r\n \"etag\": \"W/\\\"2db3475c-b82e-445a-ab25-73cf0aabb659\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3e9cc7f-1fca-4c63-8b7f-8778c5a9123f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\",\r\n \"etag\": \"W/\\\"2db3475c-b82e-445a-ab25-73cf0aabb659\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fc3f15d-86c7-41a9-a529-9869e55e36c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2db3475c-b82e-445a-ab25-73cf0aabb659\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "4b7dea48-b280-4257-9b79-0642d5f3976c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190449Z:4b7dea48-b280-4257-9b79-0642d5f3976c" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"name\": \"subnetcrptestps298\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "493" + ], + "x-ms-client-request-id": [ + "3f7ef0b5-52e8-41dd-bc35-835058a62b59" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298\",\r\n \"etag\": \"W/\\\"c0b4186a-6bee-45b6-9db7-45af0d8d741f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a3e9cc7f-1fca-4c63-8b7f-8778c5a9123f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\",\r\n \"etag\": \"W/\\\"c0b4186a-6bee-45b6-9db7-45af0d8d741f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "f7e2c41e-6327-4f17-bfd6-51c9377e3790" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/f7e2c41e-6327-4f17-bfd6-51c9377e3790?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "aba316de-b07b-4b9a-82a4-4a163e2af3a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190437Z:aba316de-b07b-4b9a-82a4-4a163e2af3a5" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/f7e2c41e-6327-4f17-bfd6-51c9377e3790?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y3ZTJjNDFlLTYzMjctNGYxNy1iZmQ2LTUxYzkzNzdlMzc5MD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.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": [ + "3d06a2ea-981f-4c37-8d00-83cc885b2757" + ], + "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": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "ae9d5347-0e1f-4434-b9ab-bea6ec3b3d2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190448Z:ae9d5347-0e1f-4434-b9ab-bea6ec3b3d2f" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3a34475-015c-4298-aa30-1772ee4eb0c3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps298' under resource group 'crptestps298' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e79f0d92-0861-418d-a81e-7b44ed3470a8" + ], + "x-ms-correlation-request-id": [ + "e79f0d92-0861-418d-a81e-7b44ed3470a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190449Z:e79f0d92-0861-418d-a81e-7b44ed3470a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:49 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\",\r\n \"etag\": \"W/\\\"2e712d44-6de6-47b4-b5a8-0ee339d528d2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c235ede0-618c-4591-aef4-aa42d9b04130\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps298\",\r\n \"fqdn\": \"pubipcrptestps298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "753" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65939060-2a4f-4a64-89f3-059b8ae79eae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2e712d44-6de6-47b4-b5a8-0ee339d528d2\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "f8e9686e-de79-456c-82cc-175ace1dd28e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190505Z:f8e9686e-de79-456c-82cc-175ace1dd28e" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bacfaeb-5e2e-418d-a95b-b880249f14ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\",\r\n \"etag\": \"W/\\\"2e712d44-6de6-47b4-b5a8-0ee339d528d2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c235ede0-618c-4591-aef4-aa42d9b04130\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps298\",\r\n \"fqdn\": \"pubipcrptestps298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "753" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "35f0de69-d7ca-4b8c-9a8f-db14df44dd93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2e712d44-6de6-47b4-b5a8-0ee339d528d2\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "54739604-335c-4aa7-a152-aa05296cf0a1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190505Z:54739604-335c-4aa7-a152-aa05296cf0a1" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9d425fb-5c51-4409-b8fd-766524ab2faa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\",\r\n \"etag\": \"W/\\\"2e712d44-6de6-47b4-b5a8-0ee339d528d2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c235ede0-618c-4591-aef4-aa42d9b04130\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps298\",\r\n \"fqdn\": \"pubipcrptestps298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "753" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ac094824-cd91-4640-b1be-aede50aaa0af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2e712d44-6de6-47b4-b5a8-0ee339d528d2\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "4c65cfd6-6e93-4d3f-b792-4a9f20ec1531" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190506Z:4c65cfd6-6e93-4d3f-b792-4a9f20ec1531" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHMyOTg/YXBpLXZlcnNpb249MjAxNy0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps298\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "195" + ], + "x-ms-client-request-id": [ + "0c673cbf-d479-497f-b0c5-566db00c7f2f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\",\r\n \"etag\": \"W/\\\"b8c83d8a-e922-4cc3-abab-b8538601689f\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c235ede0-618c-4591-aef4-aa42d9b04130\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps298\",\r\n \"fqdn\": \"pubipcrptestps298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "5ab563e6-bd01-4962-a76c-5444c3eac45d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/5ab563e6-bd01-4962-a76c-5444c3eac45d?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d7538f5a-4524-485b-ac7d-97cf2092ea15" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190454Z:d7538f5a-4524-485b-ac7d-97cf2092ea15" + ], + "Date": [ + "Mon, 06 Nov 2017 19:04:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/5ab563e6-bd01-4962-a76c-5444c3eac45d?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhYjU2M2U2LWJkMDEtNDk2Mi1hNzZjLTU0NDRjM2VhYzQ1ZD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.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": [ + "10da41f5-c2f1-45d9-acd3-fcb695a37500" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "180c76d1-59bb-43b2-99e3-8306773399a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190505Z:180c76d1-59bb-43b2-99e3-8306773399a7" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMGNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1be83c9-be4f-4c60-9ce1-a4fe95d90524" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic0crptestps298' under resource group 'crptestps298' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "300e8596-1d03-4ea0-bde4-83e249d4ed20" + ], + "x-ms-correlation-request-id": [ + "300e8596-1d03-4ea0-bde4-83e249d4ed20" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190506Z:300e8596-1d03-4ea0-bde4-83e249d4ed20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMGNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6bdd646-3db5-4fa3-a368-5a80530a909e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3333edbb-fcc7-4fcc-9182-0871d7713bc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"280beb0c-295c-45df-8444-09f1dd33e03e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "f728feb3-712f-4e90-8f01-a277393f2fe0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190509Z:f728feb3-712f-4e90-8f01-a277393f2fe0" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMGNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4395ecb0-b341-422b-98aa-235a4b6b1864" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6bdd646-3db5-4fa3-a368-5a80530a909e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f53f83a-7961-4946-a93f-f1652d8fc683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"280beb0c-295c-45df-8444-09f1dd33e03e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "a97b63af-62b4-4e1f-b81f-dccbea7023ec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190509Z:a97b63af-62b4-4e1f-b81f-dccbea7023ec" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMGNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8da2dbd-df60-4a13-96b2-5eddb6ecdabe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6bdd646-3db5-4fa3-a368-5a80530a909e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6424a4de-6d07-4f39-b3e6-ba048e2fa628" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"280beb0c-295c-45df-8444-09f1dd33e03e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "6e5d0c68-9e10-4c1a-baed-eca7d351e449" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190511Z:6e5d0c68-9e10-4c1a-baed-eca7d351e449" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMGNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1102" + ], + "x-ms-client-request-id": [ + "9aac640a-47ab-42e4-9534-652ed8c51fdd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic0crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6bdd646-3db5-4fa3-a368-5a80530a909e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"280beb0c-295c-45df-8444-09f1dd33e03e\\\"\",\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/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps298\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d9170de-7db2-4f50-8391-30a467aa2a65" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/2d9170de-7db2-4f50-8391-30a467aa2a65?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "fd26394c-8fc8-41d7-adf8-605e12f4b803" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190509Z:fd26394c-8fc8-41d7-adf8-605e12f4b803" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMWNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56a63851-6aad-4c4b-bfb2-2d0cd36c1b1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps298' under resource group 'crptestps298' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a74c2b9d-0211-48c9-8b79-0d214a21df53" + ], + "x-ms-correlation-request-id": [ + "a74c2b9d-0211-48c9-8b79-0d214a21df53" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190512Z:a74c2b9d-0211-48c9-8b79-0d214a21df53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMWNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c334c4c2-f620-4729-b78e-d263813ec62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5bde3e6e-2a5e-4551-b348-6ad6b58b9195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"be2ebb46-25c9-4359-977e-b11a09509280\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "a4552465-0366-4601-a6a2-45bce0289911" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190515Z:a4552465-0366-4601-a6a2-45bce0289911" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMWNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b217ee67-7218-47d1-9ee4-b80824e87953" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c334c4c2-f620-4729-b78e-d263813ec62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "96f6c754-accb-414f-92aa-690fac1602ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"be2ebb46-25c9-4359-977e-b11a09509280\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "70c1f786-a458-4848-bb7c-1479d13aa545" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190515Z:70c1f786-a458-4848-bb7c-1479d13aa545" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMWNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44fb08d8-dfef-439e-bc8f-df6b4f39e54a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c334c4c2-f620-4729-b78e-d263813ec62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17087054-e4e2-4d66-aa06-2d8b476cd8c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"be2ebb46-25c9-4359-977e-b11a09509280\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "7d58d175-6c00-495d-9134-fc66836b68c4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190516Z:7d58d175-6c00-495d-9134-fc66836b68c4" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298?api-version=2017-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMWNycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"serviceEndpoints\": [],\r\n \"resourceNavigationLinks\": []\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "840" + ], + "x-ms-client-request-id": [ + "4c7e4ad6-4e0d-43d1-a70e-8751209da6c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Network.NetworkManagementClient/15.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic1crptestps298\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c334c4c2-f620-4729-b78e-d263813ec62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"be2ebb46-25c9-4359-977e-b11a09509280\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/virtualNetworks/vnetcrptestps298/subnets/subnetcrptestps298\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p5goti4kd3ruzc15q32mlkishh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ced17f82-e4f3-4be3-9b35-19ca4305af8e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Network/locations/southeastasia/operations/ced17f82-e4f3-4be3-9b35-19ca4305af8e?api-version=2017-09-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "735442c6-4bdd-42f9-8b3c-f5ffd7461e11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190515Z:735442c6-4bdd-42f9-8b3c-f5ffd7461e11" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Storage/storageAccounts/stocrptestps298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "94" + ], + "x-ms-client-request-id": [ + "e392f344-a984-44ac-8f64-7ab01ea836cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b2761c79-1fab-4b88-a990-6efacbd4e22b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/27441daa-0628-4f3c-b2dd-1af4319f0259?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "b2761c79-1fab-4b88-a990-6efacbd4e22b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190520Z:b2761c79-1fab-4b88-a990-6efacbd4e22b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/27441daa-0628-4f3c-b2dd-1af4319f0259?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMjc0NDFkYWEtMDYyOC00ZjNjLWIyZGQtMWFmNDMxOWYwMjU5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "71" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a62b11e6-75f3-4633-8625-ab00a08539dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "a62b11e6-75f3-4633-8625-ab00a08539dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190537Z:a62b11e6-75f3-4633-8625-ab00a08539dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Storage/storageAccounts/stocrptestps298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27e4653c-d359-44fe-a38e-febe902d276a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Storage/storageAccounts/stocrptestps298\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stocrptestps298\",\r\n \"properties\": {\r\n \"accountType\": \"Premium_LRS\",\r\n \"creationTime\": \"2017-11-06T19:05:19.5806781Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps298.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76f31a7f-d0f0-4c62-8a5c-4fa16bd61321" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "76f31a7f-d0f0-4c62-8a5c-4fa16bd61321" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190537Z:76f31a7f-d0f0-4c62-8a5c-4fa16bd61321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Storage/storageAccounts/stocrptestps298/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczI5OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "941793f2-d328-45eb-ba92-69ca8bf33484" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"sr6LDckVW6qXFCeLq5kqbz3+Wjrp4GdsYeWvv5hvOHfU+ZpTWizTo5em68E9ZZr1uFgzHE8Nvg9yjBdBMpOxBw==\",\r\n \"key2\": \"Q5IzUZbOG17Jvxdf7ThiTCpt9NDrEorLOIJuHCz6Ty44YW+UiaxHOGqG0hr8ADfRQlWIYVXlYanzLo98+hWVLQ==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "198" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0890bf49-f0bf-4f5e-a65b-121b7b17a12b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "0890bf49-f0bf-4f5e-a65b-121b7b17a12b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190538Z:0890bf49-f0bf-4f5e-a65b-121b7b17a12b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\",\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"PLACEHOLDER1@\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1696" + ], + "x-ms-client-request-id": [ + "926a6715-0517-401f-8aff-36a2aa49afaf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b7be9b52-54c4-4d7f-9c54-92fc905de73e" + ], + "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": [ + "2c6d09b1-fc9b-4b52-8d1e-92b7efdaff21" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190544Z:2c6d09b1-fc9b-4b52-8d1e-92b7efdaff21" + ], + "Date": [ + "Mon, 06 Nov 2017 19:05:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"fromImage\",\r\n \"diskSizeGB\": 128,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n }\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 11,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n }\r\n },\r\n {\r\n \"lun\": 3,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 2059,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2715" + ], + "x-ms-client-request-id": [ + "d3f0f6ad-910e-4d4e-b6f6-76509e3c64e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ace9b2d-6991-4307-8983-a42bf1a4a932?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4ace9b2d-6991-4307-8983-a42bf1a4a932" + ], + "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": [ + "49dc15d1-8c4a-47dd-a1d3-40aef56948e0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191020Z:49dc15d1-8c4a-47dd-a1d3-40aef56948e0" + ], + "Date": [ + "Mon, 06 Nov 2017 19:10:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "5d852d9e-0d8c-435f-a742-77a2f3b3cb3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "a67abc83-9fc3-429b-82dd-671677d39ff4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190614Z:a67abc83-9fc3-429b-82dd-671677d39ff4" + ], + "Date": [ + "Mon, 06 Nov 2017 19:06:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "33d1a827-a905-4dcb-9b62-48d2bec21f7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "04d19f7c-478b-40f2-9f04-4670a9ff249c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190644Z:04d19f7c-478b-40f2-9f04-4670a9ff249c" + ], + "Date": [ + "Mon, 06 Nov 2017 19:06:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "803acaca-3e22-4989-b9e3-1a2442d691e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "f38344c8-949c-4bf9-a9cb-626d6fe0eb79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190715Z:f38344c8-949c-4bf9-a9cb-626d6fe0eb79" + ], + "Date": [ + "Mon, 06 Nov 2017 19:07:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cbb505bf-8e00-41d3-aa90-74ffe734e8cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "32fcf180-0e57-4abf-9284-bc3f5bb96d5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190745Z:32fcf180-0e57-4abf-9284-bc3f5bb96d5e" + ], + "Date": [ + "Mon, 06 Nov 2017 19:07:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "b1f56b0d-b604-4095-8d12-0c74f0e952a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "c4485ac5-2c5a-4411-a287-4ffe92af9c68" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190815Z:c4485ac5-2c5a-4411-a287-4ffe92af9c68" + ], + "Date": [ + "Mon, 06 Nov 2017 19:08:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c6f8d6ed-e738-49dd-8cec-da8f06076193" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "732e03b6-7381-4c27-8f3b-e52940428781" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190845Z:732e03b6-7381-4c27-8f3b-e52940428781" + ], + "Date": [ + "Mon, 06 Nov 2017 19:08:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "cd063894-64ad-497b-8725-16153442aa49" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "20e4ccc5-83f5-4837-a736-1312efeea9e5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190916Z:20e4ccc5-83f5-4837-a736-1312efeea9e5" + ], + "Date": [ + "Mon, 06 Nov 2017 19:09:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "31c671b7-e1bc-4975-817d-336b994a3025" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "9621dad6-2364-4a13-8a9c-efdc0fd849cd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T190946Z:9621dad6-2364-4a13-8a9c-efdc0fd849cd" + ], + "Date": [ + "Mon, 06 Nov 2017 19:09:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/b7be9b52-54c4-4d7f-9c54-92fc905de73e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I3YmU5YjUyLTU0YzQtNGQ3Zi05YzU0LTkyZmM5MDVkZTczZT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:05:43.3600857+01:00\",\r\n \"endTime\": \"2017-11-06T20:09:49.8129135+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b7be9b52-54c4-4d7f-9c54-92fc905de73e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8d1a3e2e-0a81-484a-9daf-c93949ce0159" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "c16762ee-1aa3-4800-a8b1-18b32e98e26c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191016Z:c16762ee-1aa3-4800-a8b1-18b32e98e26c" + ], + "Date": [ + "Mon, 06 Nov 2017 19:10:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2620" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "7900aea4-e81c-4267-9ea5-30bce66a1c17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "039832f6-e13d-44ce-8719-aa0650e75f52" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191016Z:039832f6-e13d-44ce-8719-aa0650e75f52" + ], + "Date": [ + "Mon, 06 Nov 2017 19:10:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d0c8c18-35ed-4d9b-a9cb-87758571c87f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2620" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8e5def1a-2ed6-4f94-9107-d64d38a9f866" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "5ec62689-5bcf-43b1-90fb-c423abfc77eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191017Z:5ec62689-5bcf-43b1-90fb-c423abfc77eb" + ], + "Date": [ + "Mon, 06 Nov 2017 19:10:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "318eb695-10b7-4176-887c-19ffe636e294" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2620" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "46d50cf5-322a-438b-8ef2-a66116f6830e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "31701c05-f3ec-4f44-8ac7-dbfa4a1f27bf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191017Z:31701c05-f3ec-4f44-8ac7-dbfa4a1f27bf" + ], + "Date": [ + "Mon, 06 Nov 2017 19:10:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1a49083c-fae2-408f-adf5-5c080d04e07a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "30124be9-0cc1-438c-b896-c6d863fd7496" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191121Z:30124be9-0cc1-438c-b896-c6d863fd7496" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "810deef2-1905-4d50-b78d-cb7876bfe896" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "8c0ef888-8306-4734-b904-d1c84c306d22" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "6e779e46-5805-49c8-8359-47c091425483" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191122Z:6e779e46-5805-49c8-8359-47c091425483" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00ebb244-d404-4e84-ad05-c09c47b94724" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "15ef9cc5-8919-40bf-8b67-78f755eab663" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "61fbe958-99e9-4a9a-9584-8fc9ef2cdbe4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191122Z:61fbe958-99e9-4a9a-9584-8fc9ef2cdbe4" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b92152d-01db-4bf5-b941-9a72b090e01e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ed10279d-7272-41bb-8307-2f4f14eaf633" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "e1f9fe1b-cc02-4e7e-81ff-17d8d43f72f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191143Z:e1f9fe1b-cc02-4e7e-81ff-17d8d43f72f7" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e568a1a-5956-46c2-92b8-aa90b4aa9198" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fffc9bf0-e34a-4f51-b15b-742c07ffa0a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "da8d004d-b3d7-4e2a-8ff2-e4c2c8bf6a6c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191220Z:da8d004d-b3d7-4e2a-8ff2-e4c2c8bf6a6c" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61839f2e-3cca-4b3a-9546-38030b525553" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "bda197d5-1d87-48e5-9e0d-8a3fec81d922" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "3d244dd9-1b55-43a8-90df-38c756733787" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191220Z:3d244dd9-1b55-43a8-90df-38c756733787" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c307fff1-45a1-4499-b772-6a5f54ead6ca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "4187643b-bbb3-401f-9622-f634e9c9410d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "4062ba36-9883-4c69-9938-3c74a0e0c65e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191222Z:4062ba36-9883-4c69-9938-3c74a0e0c65e" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49d299c3-3c06-475a-86e6-f933f500fe9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3132" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c2801e0c-a2e2-4818-bb61-0296cc6fa110" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "78ef5a57-794d-43f6-919f-c8d018b99b62" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191253Z:78ef5a57-794d-43f6-919f-c8d018b99b62" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ace9b2d-6991-4307-8983-a42bf1a4a932?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhY2U5YjJkLTY5OTEtNDMwNy04OTgzLWE0MmJmMWE0YTkzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:10:19.422294+01:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ace9b2d-6991-4307-8983-a42bf1a4a932\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "3039cf2c-09f0-4928-b5de-47ad0fb05788" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "3b991369-4cca-4aad-806b-845729343954" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191051Z:3b991369-4cca-4aad-806b-845729343954" + ], + "Date": [ + "Mon, 06 Nov 2017 19:10:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/4ace9b2d-6991-4307-8983-a42bf1a4a932?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhY2U5YjJkLTY5OTEtNDMwNy04OTgzLWE0MmJmMWE0YTkzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:10:19.422294+01:00\",\r\n \"endTime\": \"2017-11-06T20:10:57.1097565+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ace9b2d-6991-4307-8983-a42bf1a4a932\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "0dadaf05-9357-4b66-bdb2-f861387d44fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "34f479b2-6048-4d3b-aa56-c01aa215b875" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191121Z:34f479b2-6048-4d3b-aa56-c01aa215b875" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?$expand=instanceView&api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5016eda-51f0-414b-83e7-81a48988554a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.13\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-11-06T20:11:20+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:10:20.2191398+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:10:57.0941333+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5296" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "ea2ade75-d339-4ba0-9332-2d478a7c85a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "3004fd76-2edb-4289-95e0-34b51d6ac716" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191122Z:3004fd76-2edb-4289-95e0-34b51d6ac716" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?$expand=instanceView&api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08e22a30-5701-43be-aaf6-c6544fc03285" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.13\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-11-06T20:11:41+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:10:20.2191398+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:10:57.0941333+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5296" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "1a310421-5989-450b-a5c6-3e7daad562cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "0bf28428-6374-4c2a-acd2-e5b2ab9346b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191144Z:0bf28428-6374-4c2a-acd2-e5b2ab9346b4" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298?$expand=instanceView&api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92c1ab6b-949a-4154-ae38-d43b67f5c179" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"e6bea420-fe98-477a-9d8d-963c47df0877\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E4s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"SLES\",\r\n \"sku\": \"12-SP2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\"\r\n },\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\"\r\n },\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n \"diskSizeGB\": 2059\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic0crptestps298\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Network/networkInterfaces/nic1crptestps298\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": false\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.13\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-11-06T20:12:20+01:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.1.0\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"testDataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:05:54.9225563+01:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:10:20.2191398+01:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0.1.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"deploymentId=2fe9ef03-6f0d-4393-960a-9b71981ddd82 roleInstance=_vmcrptestps298 OK\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-11-06T20:12:15.1250853+01:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"name\": \"vmcrptestps298\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "c0caa0a0-852c-497e-8838-322bd33c7c3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "599680cf-3539-4b87-b58b-bea19322825f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191221Z:599680cf-3539-4b87-b58b-bea19322825f" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Storage/storageAccounts/stocrptestps2982?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczI5ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], + "x-ms-client-request-id": [ + "ee8ba796-1d87-4e19-bed4-3b3743afe08a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d94d5457-aadb-4814-a6cb-18a1670c2112" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/841b7e9b-4c6f-45e3-b80d-c18c3dc4d476?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d94d5457-aadb-4814-a6cb-18a1670c2112" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191126Z:d94d5457-aadb-4814-a6cb-18a1670c2112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:26 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/841b7e9b-4c6f-45e3-b80d-c18c3dc4d476?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvODQxYjdlOWItNGM2Zi00NWUzLWI4MGQtYzE4YzNkYzRkNDc2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "72" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31186060-94f2-4d77-9f2f-26503e50f254" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "31186060-94f2-4d77-9f2f-26503e50f254" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191143Z:31186060-94f2-4d77-9f2f-26503e50f254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3Mvb3NEaXNrP2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d83455da-4120-41e7-8755-1bef5ad50c65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2017.06.20\"\r\n }\r\n },\r\n \"diskSizeGB\": 128,\r\n \"timeCreated\": \"2017-11-06T20:05:43.6400607+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "87b4ea08-3d95-4d07-bc71-d14d70c8834d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "7f81a664-af44-42e5-a03c-c0f3df653052" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191145Z:7f81a664-af44-42e5-a03c-c0f3df653052" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3Mvb3NEaXNrP2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d7c19e3-4f18-4e13-8b8b-71323138f26a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2017.06.20\"\r\n }\r\n },\r\n \"diskSizeGB\": 128,\r\n \"timeCreated\": \"2017-11-06T20:05:43.6400607+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/osDisk\",\r\n \"name\": \"osDisk\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "49aa1186-9223-4113-a089-f2d69026ac7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "6dabc4fe-f0a6-49d1-b4bc-9312b296c43c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191221Z:6dabc4fe-f0a6-49d1-b4bc-9312b296c43c" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvdGVzdERhdGFEaXNrMT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06916f6f-a1e6-45d0-b421-3dbcedddc5f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-11-06T20:05:43.6400607+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "703" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "34e043ec-e0e4-43f4-9b6b-8e7573581927" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "2a2a442d-2c5a-43c6-8377-fe8405ef391c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191145Z:2a2a442d-2c5a-43c6-8377-fe8405ef391c" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvdGVzdERhdGFEaXNrMT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1d338a4-5d41-475f-949e-7c1b29a55af3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2017-11-06T20:05:43.6400607+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk1\",\r\n \"name\": \"testDataDisk1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "703" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "22ba65cf-6097-4859-9fdb-489347ec33bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "74568587-8799-4bc4-a789-261c28562e46" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191221Z:74568587-8799-4bc4-a789-261c28562e46" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvdGVzdERhdGFEaXNrMj9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3554dbe5-c2dc-4d30-8a3e-4015949e3002" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-11-06T20:05:43.6400607+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "703" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "302c87ab-59d1-4244-80c2-f8ce3b29723a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "c32fa73f-8720-4eb8-aec0-7b3c8acff8bf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191145Z:c32fa73f-8720-4eb8-aec0-7b3c8acff8bf" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvdGVzdERhdGFEaXNrMj9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98269548-a813-4430-9f97-a5f56361f922" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 11,\r\n \"timeCreated\": \"2017-11-06T20:05:43.6400607+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/testDataDisk2\",\r\n \"name\": \"testDataDisk2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "703" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "8658f5e9-e9da-46fd-9e1f-2bcb182a5331" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "c086ee44-2c50-49a2-9c58-563bb19efeb8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191221Z:c086ee44-2c50-49a2-9c58-563bb19efeb8" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3Mvdm1jcnB0ZXN0cHMyOThfZGlzazRfYzQ3NGNkMDZiZjNmNDdhY2I5NDBiYTk5ZjNkMjNmOWU/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79ef3d30-d8bf-46a6-9e56-3d9aa4f574a1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 2059,\r\n \"timeCreated\": \"2017-11-06T20:10:19.5555605+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "caa3e1f4-4e48-49ca-9dc4-c7113e07a247" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "e8cedda8-49f2-431c-800b-a28959e93eec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191145Z:e8cedda8-49f2-431c-800b-a28959e93eec" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3Mvdm1jcnB0ZXN0cHMyOThfZGlzazRfYzQ3NGNkMDZiZjNmNDdhY2I5NDBiYTk5ZjNkMjNmOWU/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcc84586-62e4-46e1-8a51-740cbe6baec4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 2059,\r\n \"timeCreated\": \"2017-11-06T20:10:19.5555605+01:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/disks/vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\",\r\n \"name\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "6a61f210-c83b-4dca-be0f-afdfe18acd0b_131541468329312318" + ], + "x-ms-request-id": [ + "7184ba07-17e1-4ece-b536-26d621767005" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "f86c897c-b414-48ab-b5b3-d2d7889ee1cb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191222Z:f86c897c-b414-48ab-b5b3-d2d7889ee1cb" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4L2V4dGVuc2lvbnMvQXp1cmVFbmhhbmNlZE1vbml0b3JGb3JMaW51eD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"cfg\": []\r\n }\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3253" + ], + "x-ms-client-request-id": [ + "468d4e4d-3912-4e4e-b032-7c4f3114200b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1990" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/12132043-4979-4004-8059-688a6d33ed6a?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "12132043-4979-4004-8059-688a6d33ed6a" + ], + "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": [ + "50d416bf-01ab-42c7-a740-e7b001866369" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191149Z:50d416bf-01ab-42c7-a740-e7b001866369" + ], + "Date": [ + "Mon, 06 Nov 2017 19:11:48 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/12132043-4979-4004-8059-688a6d33ed6a?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzEyMTMyMDQzLTQ5NzktNDAwNC04MDU5LTY4OGE2ZDMzZWQ2YT9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:11:48.7970861+01:00\",\r\n \"endTime\": \"2017-11-06T20:12:15.1407306+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"12132043-4979-4004-8059-688a6d33ed6a\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "fa82500f-23fc-4d0f-b7e3-dae23eb6182c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "cb7ed8c0-6532-4fde-a246-70cd7c5c94e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191219Z:cb7ed8c0-6532-4fde-a246-70cd7c5c94e1" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4L2V4dGVuc2lvbnMvQXp1cmVFbmhhbmNlZE1vbml0b3JGb3JMaW51eD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1991" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "2c22c490-2bd5-406f-8bf2-41e69d03241b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "8c98a98b-2215-4f92-bf4f-434657037083" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191219Z:8c98a98b-2215-4f92-bf4f-434657037083" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4L2V4dGVuc2lvbnMvQXp1cmVFbmhhbmNlZE1vbml0b3JGb3JMaW51eD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2c5002d-f9de-4e1d-84f3-4437d2e4c2b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"AzureEnhancedMonitorForLinux\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"cfg\": [\r\n {\r\n \"key\": \"vmsize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"key\": \"vm.role\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"key\": \"vm.memory.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"vm.cpu.isovercommitted\",\r\n \"value\": 0\r\n },\r\n {\r\n \"key\": \"script.version\",\r\n \"value\": \"3.0.0.0\"\r\n },\r\n {\r\n \"key\": \"verbose\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"key\": \"href\",\r\n \"value\": \"http://aka.ms/sapaem\"\r\n },\r\n {\r\n \"key\": \"vm.sla.throughput\",\r\n \"value\": 96\r\n },\r\n {\r\n \"key\": \"vm.sla.iops\",\r\n \"value\": 6400\r\n },\r\n {\r\n \"key\": \"osdisk.name\",\r\n \"value\": \"osDisk\"\r\n },\r\n {\r\n \"key\": \"osdisk.caching\",\r\n \"value\": \"ReadWrite\"\r\n },\r\n {\r\n \"key\": \"osdisk.type\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"osdisk.sla.throughput\",\r\n \"value\": 100\r\n },\r\n {\r\n \"key\": \"osdisk.sla.iops\",\r\n \"value\": 500\r\n },\r\n {\r\n \"key\": \"disk.lun.1\",\r\n \"value\": 1\r\n },\r\n {\r\n \"key\": \"disk.name.1\",\r\n \"value\": \"testDataDisk1\"\r\n },\r\n {\r\n \"key\": \"disk.caching.1\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.1\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.1\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.1\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.2\",\r\n \"value\": 2\r\n },\r\n {\r\n \"key\": \"disk.name.2\",\r\n \"value\": \"testDataDisk2\"\r\n },\r\n {\r\n \"key\": \"disk.caching.2\",\r\n \"value\": \"ReadOnly\"\r\n },\r\n {\r\n \"key\": \"disk.type.2\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.2\",\r\n \"value\": 125\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.2\",\r\n \"value\": 120\r\n },\r\n {\r\n \"key\": \"disk.lun.3\",\r\n \"value\": 3\r\n },\r\n {\r\n \"key\": \"disk.name.3\",\r\n \"value\": \"vmcrptestps298_disk4_c474cd06bf3f47acb940ba99f3d23f9e\"\r\n },\r\n {\r\n \"key\": \"disk.caching.3\",\r\n \"value\": \"None\"\r\n },\r\n {\r\n \"key\": \"disk.type.3\",\r\n \"value\": \"Premium\"\r\n },\r\n {\r\n \"key\": \"disk.sla.throughput.3\",\r\n \"value\": 250\r\n },\r\n {\r\n \"key\": \"disk.sla.iops.3\",\r\n \"value\": 7500\r\n },\r\n {\r\n \"key\": \"wad.isenabled\",\r\n \"value\": 0\r\n }\r\n ]\r\n },\r\n \"forceUpdateTag\": \"636455959040169337\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1991" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "13fc06c2-2299-4ba2-b7af-211dba7bcfdc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "ce81092b-07e1-40de-bdf0-c86c85aa3313" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191220Z:ce81092b-07e1-40de-bdf0-c86c85aa3313" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourceGroups/crptestps298/providers/Microsoft.Compute/virtualMachines/vmcrptestps298/extensions/AzureEnhancedMonitorForLinux?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzMjk4L2V4dGVuc2lvbnMvQXp1cmVFbmhhbmNlZE1vbml0b3JGb3JMaW51eD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f7f145c-242c-48e3-af6c-dc6ade5dcdea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/a3ad653f-e876-45b6-9055-fff5783c8c7d?api-version=2017-03-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "a3ad653f-e876-45b6-9055-fff5783c8c7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/a3ad653f-e876-45b6-9055-fff5783c8c7d?monitor=true&api-version=2017-03-30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c2a8d79c-608b-47ad-b116-219f6d71178e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191223Z:c2a8d79c-608b-47ad-b116-219f6d71178e" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:22 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/providers/Microsoft.Compute/locations/southeastasia/operations/a3ad653f-e876-45b6-9055-fff5783c8c7d?api-version=2017-03-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EzYWQ2NTNmLWU4NzYtNDViNi05MDU1LWZmZjU3ODNjOGM3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2556.0", + "OSName/Windows10Pro", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/16.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-11-06T20:12:23.3125798+01:00\",\r\n \"endTime\": \"2017-11-06T20:12:50.500093+01:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a3ad653f-e876-45b6-9055-fff5783c8c7d\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f2b19da9-c944-4adb-a95c-25e8d21c734b_131514031037521494" + ], + "x-ms-request-id": [ + "6f9505de-d3a3-4e81-8d34-89339bda4364" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "695fde42-5b6e-4e88-81a5-8a9678da192e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191253Z:695fde42-5b6e-4e88-81a5-8a9678da192e" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/resourcegroups/crptestps298?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI5OD9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "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": [ + "85603cf3-4c73-485d-a0a9-2b1540962fa6" + ], + "x-ms-correlation-request-id": [ + "85603cf3-4c73-485d-a0a9-2b1540962fa6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191257Z:85603cf3-4c73-485d-a0a9-2b1540962fa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "168665df-810d-45d1-880f-1e7f6bfc3a30" + ], + "x-ms-correlation-request-id": [ + "168665df-810d-45d1-880f-1e7f6bfc3a30" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191258Z:168665df-810d-45d1-880f-1e7f6bfc3a30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:12:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "714d0292-19b8-42ef-8778-4a7453edc0e8" + ], + "x-ms-correlation-request-id": [ + "714d0292-19b8-42ef-8778-4a7453edc0e8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191313Z:714d0292-19b8-42ef-8778-4a7453edc0e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:13:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "96a2f76d-598a-47ac-9440-050f4cf2bd07" + ], + "x-ms-correlation-request-id": [ + "96a2f76d-598a-47ac-9440-050f4cf2bd07" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191329Z:96a2f76d-598a-47ac-9440-050f4cf2bd07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:13:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "376c63b5-1274-4b68-8e5c-1539759689d4" + ], + "x-ms-correlation-request-id": [ + "376c63b5-1274-4b68-8e5c-1539759689d4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191344Z:376c63b5-1274-4b68-8e5c-1539759689d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:13:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "c535727b-3195-4eb2-bb81-afac5ca0e417" + ], + "x-ms-correlation-request-id": [ + "c535727b-3195-4eb2-bb81-afac5ca0e417" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191400Z:c535727b-3195-4eb2-bb81-afac5ca0e417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:13:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "41abcfb8-4cb4-4519-af5c-4ae510c3fdb8" + ], + "x-ms-correlation-request-id": [ + "41abcfb8-4cb4-4519-af5c-4ae510c3fdb8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191415Z:41abcfb8-4cb4-4519-af5c-4ae510c3fdb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:14:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "bcacc54e-541c-4858-8ba3-68d2cd3bdc84" + ], + "x-ms-correlation-request-id": [ + "bcacc54e-541c-4858-8ba3-68d2cd3bdc84" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191431Z:bcacc54e-541c-4858-8ba3-68d2cd3bdc84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:14:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "2060e29b-480d-443b-b304-4dcda6e05fe7" + ], + "x-ms-correlation-request-id": [ + "2060e29b-480d-443b-b304-4dcda6e05fe7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191446Z:2060e29b-480d-443b-b304-4dcda6e05fe7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:14:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "5e332bdc-9439-4581-a646-b221ddca047b" + ], + "x-ms-correlation-request-id": [ + "5e332bdc-9439-4581-a646-b221ddca047b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191501Z:5e332bdc-9439-4581-a646-b221ddca047b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:15:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "baa7c9ce-4b57-4d79-9851-0e38f98b82b8" + ], + "x-ms-correlation-request-id": [ + "baa7c9ce-4b57-4d79-9851-0e38f98b82b8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191517Z:baa7c9ce-4b57-4d79-9851-0e38f98b82b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:15:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "9aa5f6f1-f5c9-4af6-8af9-57610959e0e5" + ], + "x-ms-correlation-request-id": [ + "9aa5f6f1-f5c9-4af6-8af9-57610959e0e5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191532Z:9aa5f6f1-f5c9-4af6-8af9-57610959e0e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:15:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "55318165-d4aa-45a6-8903-50bc41799a09" + ], + "x-ms-correlation-request-id": [ + "55318165-d4aa-45a6-8903-50bc41799a09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191548Z:55318165-d4aa-45a6-8903-50bc41799a09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:15:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "58002e30-45b5-4bc1-8676-4dd64a0ac94c" + ], + "x-ms-correlation-request-id": [ + "58002e30-45b5-4bc1-8676-4dd64a0ac94c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191603Z:58002e30-45b5-4bc1-8676-4dd64a0ac94c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:16:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "37fc19ae-1bee-4a3d-be37-0cc04f092182" + ], + "x-ms-correlation-request-id": [ + "37fc19ae-1bee-4a3d-be37-0cc04f092182" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191619Z:37fc19ae-1bee-4a3d-be37-0cc04f092182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:16:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5b139739-0dd9-4577-b28b-38b95554350d" + ], + "x-ms-correlation-request-id": [ + "5b139739-0dd9-4577-b28b-38b95554350d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191634Z:5b139739-0dd9-4577-b28b-38b95554350d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:16:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "805e93b8-fdfa-4ae2-a259-17c62980cb72" + ], + "x-ms-correlation-request-id": [ + "805e93b8-fdfa-4ae2-a259-17c62980cb72" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191650Z:805e93b8-fdfa-4ae2-a259-17c62980cb72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:16:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "7d3d122c-4f4b-4a3b-8850-2f2012497bf7" + ], + "x-ms-correlation-request-id": [ + "7d3d122c-4f4b-4a3b-8850-2f2012497bf7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191705Z:7d3d122c-4f4b-4a3b-8850-2f2012497bf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:17:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "f5dc3c3b-2a39-45b2-9fdf-fed8eb9c10be" + ], + "x-ms-correlation-request-id": [ + "f5dc3c3b-2a39-45b2-9fdf-fed8eb9c10be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191720Z:f5dc3c3b-2a39-45b2-9fdf-fed8eb9c10be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:17:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "9f72b3d7-c24f-46f4-a38e-3cc5e95ed4da" + ], + "x-ms-correlation-request-id": [ + "9f72b3d7-c24f-46f4-a38e-3cc5e95ed4da" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191736Z:9f72b3d7-c24f-46f4-a38e-3cc5e95ed4da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:17:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "70426f99-0c6c-4c7d-825a-8e56cb30bb42" + ], + "x-ms-correlation-request-id": [ + "70426f99-0c6c-4c7d-825a-8e56cb30bb42" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191751Z:70426f99-0c6c-4c7d-825a-8e56cb30bb42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:17:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "3b4c621c-8e97-4160-afe6-fbaef222ba07" + ], + "x-ms-correlation-request-id": [ + "3b4c621c-8e97-4160-afe6-fbaef222ba07" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191807Z:3b4c621c-8e97-4160-afe6-fbaef222ba07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:18:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "39ea85bf-c672-443b-ab2e-068963a3172d" + ], + "x-ms-correlation-request-id": [ + "39ea85bf-c672-443b-ab2e-068963a3172d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191822Z:39ea85bf-c672-443b-ab2e-068963a3172d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:18:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "0df35174-18e3-455a-8c3e-006603be4132" + ], + "x-ms-correlation-request-id": [ + "0df35174-18e3-455a-8c3e-006603be4132" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191838Z:0df35174-18e3-455a-8c3e-006603be4132" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:18:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "e9fcec6f-89ab-43a1-b41b-018d0b20ae79" + ], + "x-ms-correlation-request-id": [ + "e9fcec6f-89ab-43a1-b41b-018d0b20ae79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191853Z:e9fcec6f-89ab-43a1-b41b-018d0b20ae79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:18:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "00d0d843-b6f2-4873-a604-219f848e2d6b" + ], + "x-ms-correlation-request-id": [ + "00d0d843-b6f2-4873-a604-219f848e2d6b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191909Z:00d0d843-b6f2-4873-a604-219f848e2d6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:19:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "b4e97b9a-bc6f-4bd4-9363-52c72d0b9b7c" + ], + "x-ms-correlation-request-id": [ + "b4e97b9a-bc6f-4bd4-9363-52c72d0b9b7c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191924Z:b4e97b9a-bc6f-4bd4-9363-52c72d0b9b7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:19:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0d00a9f6-eabe-4083-99ad-383632714f14/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyOTgtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGQwMGE5ZjYtZWFiZS00MDgzLTk5YWQtMzgzNjMyNzE0ZjE0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15T1RndFUwOVZWRWhGUVZOVVFWTkpRU0lzSW1wdllreHZZMkYwYVc5dUlqb2ljMjkxZEdobFlYTjBZWE5wWVNKOT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2016-02-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "6c140f91-48f8-4724-a4e8-905e86afa4a7" + ], + "x-ms-correlation-request-id": [ + "6c140f91-48f8-4724-a4e8-905e86afa4a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20171106T191940Z:6c140f91-48f8-4724-a4e8-905e86afa4a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Nov 2017 19:19:39 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AEMExtensionAdvancedLinuxMD_E": [ + "crptestps298" + ] + }, + "Variables": { + "SubscriptionId": "0d00a9f6-eabe-4083-99ad-383632714f14" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs index 0421a4a66ef9..aea328165d61 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/AEMHelper.cs @@ -176,6 +176,8 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.TP = 32; break; case "Standard_DS1_v2": + case "Standard_D2s_v3": + case "Standard_E2s_v3": result.HasSLA = true; result.IOPS = 3200; result.TP = 48; @@ -186,6 +188,8 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.TP = 64; break; case "Standard_DS2_v2": + case "Standard_D4s_v3": + case "Standard_E4s_v3": result.HasSLA = true; result.IOPS = 6400; result.TP = 96; @@ -196,6 +200,8 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.TP = 128; break; case "Standard_DS3_v2": + case "Standard_D8s_v3": + case "Standard_E8s_v3": result.HasSLA = true; result.IOPS = 12800; result.TP = 192; @@ -206,11 +212,14 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.TP = 256; break; case "Standard_DS4_v2": + case "Standard_D16s_v3": + case "Standard_E16s_v3": result.HasSLA = true; result.IOPS = 25600; result.TP = 384; break; case "Standard_DS5_v2": + case "Standard_D32s_v3": result.HasSLA = true; result.IOPS = 51200; result.TP = 768; @@ -251,6 +260,7 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.TP = 512; break; case "Standard_DS14_v2": + case "Standard_E32s_v3": result.HasSLA = true; result.IOPS = 51200; result.TP = 768; @@ -286,6 +296,7 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.TP = 2000; break; case "Standard_M64ms": + case "Standard_M64s": result.HasSLA = true; result.IOPS = 40000; result.TP = 1000; @@ -295,6 +306,12 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine) result.IOPS = 80000; result.TP = 2000; break; + case "Standard_E64s_v3": + case "Standard_D64s_v3": + result.HasSLA = true; + result.IOPS = 80000; + result.TP = 1200; + break; default: break; }